Changes in configure [764c7d1:003553b]
Legend:
- Unmodified
- Added
- Removed
-
configure
r764c7d1 r003553b 30 30 gcov=0 31 31 plugins=1 32 otr=auto33 32 34 33 events=glib … … 71 70 --gcov=0/1 Disable/enable test coverage reporting $gcov 72 71 --plugins=0/1 Disable/enable plugins support $plugins 73 --otr=0/1/auto Disable/enable OTR encryption support $otr74 72 75 73 --events=... Event handler (glib, libevent) $events … … 176 174 if $PKG_CONFIG glib-2.0 --atleast-version=$GLIB_MIN_VERSION; then 177 175 cat<<EOF>>Makefile.settings 178 EFLAGS+=`$PKG_CONFIG --libs glib-2.0 gmodule-2.0 gthread-2.0`179 CFLAGS+=`$PKG_CONFIG --cflags glib-2.0 gmodule-2.0 gthread-2.0`176 EFLAGS+=`$PKG_CONFIG --libs glib-2.0 gmodule-2.0` 177 CFLAGS+=`$PKG_CONFIG --cflags glib-2.0 gmodule-2.0` 180 178 EOF 181 179 else … … 387 385 fi 388 386 389 if [ "$otr" = "auto" ]; then390 for i in /lib /usr/lib /usr/local/lib; do391 if [ -f $i/libotr.a ]; then392 otr=1393 break394 fi395 done396 fi397 if [ "$otr" = 0 ]; then398 echo '#undef WITH_OTR' >> config.h399 else400 echo '#define WITH_OTR' >> config.h401 echo "EFLAGS+=-lotr" >> Makefile.settings402 fi403 404 387 echo 405 388 if [ -z "$BITLBEE_VERSION" -a -d .bzr ] && type bzr > /dev/null 2> /dev/null; then … … 521 504 fi 522 505 523 if [ "$otr" = "1" ]; then524 echo ' Off-the-Record (OTR) Messaging enabled.'525 else526 echo ' Off-the-Record (OTR) Messaging disabled.'527 fi528 529 506 echo ' Using event handler: '$events 530 507 echo ' Using SSL library: '$ssl
Note: See TracChangeset
for help on using the changeset viewer.