- Timestamp:
- 2009-10-04T23:28:11Z (15 years ago)
- Branches:
- master
- Children:
- 860ba6a
- Parents:
- e59b4f6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
re59b4f6 r796da03 26 26 oscar=1 27 27 yahoo=1 28 purple=0 28 29 29 30 debug=0 … … 66 67 --oscar=0/1 Disable/enable Oscar part (ICQ, AIM) $oscar 67 68 --yahoo=0/1 Disable/enable Yahoo part $yahoo 69 70 --purple=0/1 Disable/enable libpurple support $purple 68 71 69 72 --debug=0/1 Disable/enable debugging $debug … … 479 482 fi 480 483 484 if [ "$purple" = 0 ]; then 485 echo '#undef WITH_PURPLE' >> config.h 486 else 487 echo '#define WITH_PURPLE' >> config.h 488 echo 'EFLAGS += $$(pkg-config purple --libs)' >> Makefile.settings 489 protocols=$protocols'purple ' 490 protoobjs=$protoobjs'purple_mod.o ' 491 fi 492 481 493 if [ "$protocols" = "PROTOCOLS = " ]; then 482 494 echo "Warning: You haven't selected any communication protocol to compile!"
Note: See TracChangeset
for help on using the changeset viewer.