- Timestamp:
- 2010-10-09T18:41:19Z (14 years ago)
- Branches:
- master
- Children:
- d150a9d
- Parents:
- 23b29c6 (diff), 27b407f (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
r23b29c6 r6197702 34 34 gcov=0 35 35 plugins=1 36 otr=0 36 37 37 38 events=glib … … 72 73 73 74 --purple=0/1 Disable/enable libpurple support $purple 75 (automatically disables other protocol modules) 74 76 75 77 --debug=0/1 Disable/enable debugging $debug … … 77 79 --gcov=0/1 Disable/enable test coverage reporting $gcov 78 80 --plugins=0/1 Disable/enable plugins support $plugins 81 --otr=0/1/auto/plugin 82 Disable/enable OTR encryption support $otr 79 83 80 84 --events=... Event handler (glib, libevent) $events … … 489 493 fi 490 494 495 otrprefix="" 496 for i in / /usr /usr/local; do 497 if [ -f ${i}/lib/libotr.a ]; then 498 otrprefix=${i} 499 break 500 fi 501 done 502 if [ "$otr" = "auto" ]; then 503 if [ -n "$otrprefix" ]; then 504 otr=1 505 else 506 otr=0 507 fi 508 fi 509 if [ "$otr" = 1 ]; then 510 # BI == built-in 511 echo '#define OTR_BI' >> config.h 512 echo "EFLAGS+=-L${otrprefix}/lib -lotr" >> Makefile.settings 513 echo "CFLAGS+=-I${otrprefix}/include" >> Makefile.settings 514 echo 'OTR_BI=otr.o' >> Makefile.settings 515 elif [ "$otr" = "plugin" ]; then 516 echo '#define OTR_PI' >> config.h 517 echo "OTRFLAGS=-L${otrprefix}/lib -lotr" >> Makefile.settings 518 echo "CFLAGS+=-I${otrprefix}/include" >> Makefile.settings 519 echo 'OTR_PI=otr.so' >> Makefile.settings 520 fi 521 491 522 if [ ! -e doc/user-guide/help.txt ] && ! type xmlto > /dev/null 2> /dev/null; then 492 523 echo … … 683 714 fi 684 715 716 if [ "$otr" = "1" ]; then 717 echo ' Off-the-Record (OTR) Messaging enabled.' 718 elif [ "$otr" = "plugin" ]; then 719 echo ' Off-the-Record (OTR) Messaging enabled (as a plugin).' 720 else 721 echo ' Off-the-Record (OTR) Messaging disabled.' 722 fi 723 685 724 echo ' Using event handler: '$events 686 725 echo ' Using SSL library: '$ssl
Note: See TracChangeset
for help on using the changeset viewer.