Changes in configure [285b55d:8de63c3]
Legend:
- Unmodified
- Added
- Removed
-
configure
r285b55d r8de63c3 29 29 strip=1 30 30 gcov=0 31 plugins=132 31 ipv6=1 33 32 … … 70 69 --strip=0/1 Disable/enable binary stripping $strip 71 70 --gcov=0/1 Disable/enable test coverage reporting $gcov 72 --plugins=0/1 Disable/enable plugins support $plugins73 71 74 72 --ipv6=0/1 IPv6 socket support $ipv6 73 74 --ldap=0/1/auto LDAP support $ldap 75 75 76 76 --events=... Event handler (glib, libevent) $events … … 140 140 141 141 if [ "$debug" = "1" ]; then 142 [ -z "$CFLAGS" ] && CFLAGS=-g142 echo 'CFLAGS=-g' >> Makefile.settings 143 143 echo 'DEBUG=1' >> Makefile.settings 144 144 echo '#define DEBUG' >> config.h 145 145 else 146 [ -z "$CFLAGS" ] && CFLAGS=-O3 147 fi 148 149 echo CFLAGS=$CFLAGS >> Makefile.settings 146 echo 'CFLAGS=-O3' >> Makefile.settings 147 fi 148 150 149 echo CFLAGS+=-I`pwd` -I`pwd`/lib -I`pwd`/protocols -I. >> Makefile.settings 151 150 … … 329 328 330 329 echo 'SSL_CLIENT=ssl_'$ssl'.o' >> Makefile.settings 331 332 for i in /lib /usr/lib /usr/local/lib; do333 if [ -e $i/libresolv.a ]; then334 echo '#define HAVE_RESOLV_A' >> config.h335 echo 'EFLAGS+='$i'/libresolv.a' >> Makefile.settings336 break337 fi338 done339 330 340 331 STORAGES="text xml" … … 386 377 fi 387 378 388 if [ "$plugins" = 0 ]; then389 echo '#undef WITH_PLUGINS' >> config.h390 else391 echo '#define WITH_PLUGINS' >> config.h392 fi393 394 379 echo 395 380 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.