Changes in configure [8de63c3:285b55d]
Legend:
- Unmodified
- Added
- Removed
-
configure
r8de63c3 r285b55d 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 … … 328 329 329 330 echo 'SSL_CLIENT=ssl_'$ssl'.o' >> Makefile.settings 331 332 for i in /lib /usr/lib /usr/local/lib; do 333 if [ -e $i/libresolv.a ]; then 334 echo '#define HAVE_RESOLV_A' >> config.h 335 echo 'EFLAGS+='$i'/libresolv.a' >> Makefile.settings 336 break 337 fi 338 done 330 339 331 340 STORAGES="text xml" … … 377 386 fi 378 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 379 394 echo 380 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.