- Timestamp:
- 2008-02-03T21:30:03Z (17 years ago)
- Branches:
- master
- Children:
- 3c80a9d
- Parents:
- b5c8a34
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
rb5c8a34 r764c7d1 30 30 gcov=0 31 31 plugins=1 32 otr=auto 32 33 33 34 events=glib … … 70 71 --gcov=0/1 Disable/enable test coverage reporting $gcov 71 72 --plugins=0/1 Disable/enable plugins support $plugins 73 --otr=0/1/auto Disable/enable OTR encryption support $otr 72 74 73 75 --events=... Event handler (glib, libevent) $events … … 174 176 if $PKG_CONFIG glib-2.0 --atleast-version=$GLIB_MIN_VERSION; then 175 177 cat<<EOF>>Makefile.settings 176 EFLAGS+=`$PKG_CONFIG --libs glib-2.0 gmodule-2.0 `177 CFLAGS+=`$PKG_CONFIG --cflags glib-2.0 gmodule-2.0 `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` 178 180 EOF 179 181 else … … 385 387 fi 386 388 389 if [ "$otr" = "auto" ]; then 390 for i in /lib /usr/lib /usr/local/lib; do 391 if [ -f $i/libotr.a ]; then 392 otr=1 393 break 394 fi 395 done 396 fi 397 if [ "$otr" = 0 ]; then 398 echo '#undef WITH_OTR' >> config.h 399 else 400 echo '#define WITH_OTR' >> config.h 401 echo "EFLAGS+=-lotr" >> Makefile.settings 402 fi 403 387 404 echo 388 405 if [ -z "$BITLBEE_VERSION" -a -d .bzr ] && type bzr > /dev/null 2> /dev/null; then … … 504 521 fi 505 522 523 if [ "$otr" = "1" ]; then 524 echo ' Off-the-Record (OTR) Messaging enabled.' 525 else 526 echo ' Off-the-Record (OTR) Messaging disabled.' 527 fi 528 506 529 echo ' Using event handler: '$events 507 530 echo ' Using SSL library: '$ssl
Note: See TracChangeset
for help on using the changeset viewer.