Changes in configure [6a72a57:e248c7f]
Legend:
- Unmodified
- Added
- Removed
-
configure
r6a72a57 re248c7f 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 … … 447 450 protoobjs='' 448 451 452 if [ "$purple" = 0 ]; then 453 echo '#undef WITH_PURPLE' >> config.h 454 else 455 echo '#define WITH_PURPLE' >> config.h 456 echo 'EFLAGS += $$(pkg-config purple --libs)' >> Makefile.settings 457 protocols=$protocols'purple ' 458 protoobjs=$protoobjs'purple_mod.o ' 459 460 # Having both libpurple and native IM modules in one binary may 461 # do strange things. Let's not do that. 462 msn=0 463 jabber=0 464 oscar=0 465 yahoo=0 466 fi 467 449 468 if [ "$msn" = 0 ]; then 450 469 echo '#undef WITH_MSN' >> config.h
Note: See TracChangeset
for help on using the changeset viewer.