- Timestamp:
- 2010-09-30T05:50:43Z (14 years ago)
- Branches:
- master
- Children:
- 6ce2240
- Parents:
- 2dcaf9a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
r2dcaf9a r858ea01 500 500 fi 501 501 if [ "$otr" = 1 ]; then 502 echo '#define WITH_OTR' >> config.h 502 # BI == built-in 503 echo '#define OTR_BI' >> config.h 503 504 echo "EFLAGS+=-L${otrprefix}/lib -lotr" >> Makefile.settings 504 505 echo "CFLAGS+=-I${otrprefix}/include" >> Makefile.settings 505 else 506 echo '#undef WITH_OTR' >> config.h 506 echo 'OTR_BI=otr.o' >> Makefile.settings 507 elif [ "$otr" = "plugin" ]; then 508 echo '#define OTR_PI' >> config.h 509 echo "OTRFLAGS=-L${otrprefix}/lib -lotr" >> Makefile.settings 510 echo "CFLAGS+=-I${otrprefix}/include" >> Makefile.settings 511 echo 'OTR_PI=otr.so' >> Makefile.settings 507 512 fi 508 513 … … 703 708 if [ "$otr" = "1" ]; then 704 709 echo ' Off-the-Record (OTR) Messaging enabled.' 710 elif [ "$otr" = "plugin" ]; then 711 echo ' Off-the-Record (OTR) Messaging enabled (as a plugin).' 705 712 else 706 713 echo ' Off-the-Record (OTR) Messaging disabled.'
Note: See TracChangeset
for help on using the changeset viewer.