- Timestamp:
- 2007-10-12T00:08:58Z (17 years ago)
- Branches:
- master
- Children:
- a6df0b5
- Parents:
- 82135c7 (diff), d444c09 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
r82135c7 reda54e4 29 29 strip=1 30 30 gcov=0 31 plugins=1 31 32 ipv6=1 32 33 … … 69 70 --strip=0/1 Disable/enable binary stripping $strip 70 71 --gcov=0/1 Disable/enable test coverage reporting $gcov 72 --plugins=0/1 Disable/enable plugins support $plugins 71 73 72 74 --ipv6=0/1 IPv6 socket support $ipv6 73 74 --ldap=0/1/auto LDAP support $ldap75 75 76 76 --events=... Event handler (glib, libevent) $events … … 140 140 141 141 if [ "$debug" = "1" ]; then 142 echo 'CFLAGS=-g' >> Makefile.settings142 [ -z "$CFLAGS" ] && CFLAGS=-g 143 143 echo 'DEBUG=1' >> Makefile.settings 144 144 echo '#define DEBUG' >> config.h 145 145 else 146 echo 'CFLAGS=-O3' >> Makefile.settings 147 fi 148 146 [ -z "$CFLAGS" ] && CFLAGS=-O3 147 fi 148 149 echo CFLAGS=$CFLAGS >> Makefile.settings 149 150 echo CFLAGS+=-I`pwd` -I`pwd`/lib -I`pwd`/protocols -I. >> Makefile.settings 150 151 … … 385 386 fi 386 387 388 if [ "$plugins" = 0 ]; then 389 echo '#undef WITH_PLUGINS' >> config.h 390 else 391 echo '#define WITH_PLUGINS' >> config.h 392 fi 393 387 394 echo 388 395 if [ -z "$BITLBEE_VERSION" -a -d .bzr ] && type bzr > /dev/null 2> /dev/null; then
Note: See TracChangeset
for help on using the changeset viewer.