- Timestamp:
- 2010-08-23T23:12:24Z (14 years ago)
- Branches:
- master
- Children:
- ad2d8bc
- Parents:
- 237eadd (diff), eb6df6a (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
r237eadd rbe999a5 34 34 gcov=0 35 35 plugins=1 36 otr=auto 36 37 37 38 events=glib … … 77 78 --gcov=0/1 Disable/enable test coverage reporting $gcov 78 79 --plugins=0/1 Disable/enable plugins support $plugins 80 --otr=0/1 Disable/enable OTR encryption support $otr 79 81 80 82 --events=... Event handler (glib, libevent) $events … … 483 485 fi 484 486 487 otrprefix="" 488 for i in / /usr /usr/local; do 489 if [ -f ${i}/lib/libotr.a ]; then 490 otrprefix=${i} 491 break 492 fi 493 done 494 if [ "$otr" = "auto" ]; then 495 if [ -n "$otrprefix" ]; then 496 otr=1 497 else 498 otr=0 499 fi 500 fi 501 if [ "$otr" = 1 ]; then 502 echo '#define WITH_OTR' >> config.h 503 echo "EFLAGS+=-L${otrprefix}/lib -lotr" >> Makefile.settings 504 echo "CFLAGS+=-I${otrprefix}/include" >> Makefile.settings 505 else 506 echo '#undef WITH_OTR' >> config.h 507 fi 508 485 509 if [ ! -e doc/user-guide/help.txt ] && ! type xmlto > /dev/null 2> /dev/null; then 486 510 echo … … 669 693 fi 670 694 695 if [ "$otr" = "1" ]; then 696 echo ' Off-the-Record (OTR) Messaging enabled.' 697 else 698 echo ' Off-the-Record (OTR) Messaging disabled.' 699 fi 700 671 701 echo ' Using event handler: '$events 672 702 echo ' Using SSL library: '$ssl
Note: See TracChangeset
for help on using the changeset viewer.