Changeset a59bd11
- Timestamp:
- 2015-08-08T00:12:36Z (9 years ago)
- Branches:
- master
- Children:
- 4850065
- Parents:
- e88fe7da
- git-author:
- dequis <dx@…> (07-08-15 23:53:28)
- git-committer:
- dequis <dx@…> (08-08-15 00:12:36)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
re88fe7da ra59bd11 353 353 EOF 354 354 ssl=gnutls 355 if ! pkg-configgnutls --atleast-version=2.8; then355 if ! $PKG_CONFIG gnutls --atleast-version=2.8; then 356 356 echo 357 357 echo 'Warning: With GnuTLS versions <2.8, certificate expire dates are not verified.' … … 643 643 644 644 otrprefix="" 645 for i in / /usr /usr/local; do646 if [ -f ${i}/lib/libotr.a ]; then647 otrprefix=${i}648 break649 fi650 done651 645 if [ "$otr" = "auto" ]; then 652 if [ -n "$otrprefix" ]; then 653 otr=1 654 else 655 otr=0 656 fi 657 fi 646 ! $PKG_CONFIG --exists libotr 647 otr=$? 648 fi 649 650 if [ "$otr" != 0 ] && ! $PKG_CONFIG --atleast-version=4.0 --print-errors libotr; then 651 exit 1 652 fi 653 658 654 if [ "$otr" = 1 ]; then 659 655 # BI == built-in 660 656 echo '#define OTR_BI' >> config.h 661 echo "EFLAGS+= -L${otrprefix}/lib -lotr -lgcrypt" >> Makefile.settings662 echo "CFLAGS+= -I${otrprefix}/include" >> Makefile.settings657 echo "EFLAGS+=$($PKG_CONFIG --libs libotr)$(libgcrypt-config --libs)" >> Makefile.settings 658 echo "CFLAGS+=$($PKG_CONFIG --cflags libotr)$(libgcrypt-config --cflags)" >> Makefile.settings 663 659 echo 'OTR_BI=otr.o' >> Makefile.settings 664 660 elif [ "$otr" = "plugin" ]; then 661 # for some mysterious reason beyond the comprehension of my mortal mind, 662 # the libgcrypt flags aren't needed when building as plugin. add them anyway. 665 663 echo '#define OTR_PI' >> config.h 666 echo "OTRFLAGS= -L${otrprefix}/lib -lotr" >> Makefile.settings667 echo "CFLAGS+= -I${otrprefix}/include" >> Makefile.settings664 echo "OTRFLAGS=$($PKG_CONFIG --libs libotr)$(libgcrypt-config --libs)" >> Makefile.settings 665 echo "CFLAGS+=$($PKG_CONFIG --cflags libotr)$(libgcrypt-config --cflags)" >> Makefile.settings 668 666 echo 'OTR_PI=otr.so' >> Makefile.settings 669 fi670 if [ "$otr" != 0 ] && ! pkg-config libotr --atleast-version=4.0; then671 echo672 echo 'WARNING: Your libotr seems to be old. BitlBee now needs at least libotr 4.0.'673 # Not hard-failing because the code above doesn't use pkg-config, so who knows674 # what's true at this point...675 667 fi 676 668
Note: See TracChangeset
for help on using the changeset viewer.