Changes in configure [4fca1db:ca0981a]
Legend:
- Unmodified
- Added
- Removed
-
configure
r4fca1db rca0981a 27 27 yahoo=1 28 28 twitter=1 29 purple=1 29 30 30 31 debug=0 … … 68 69 --yahoo=0/1 Disable/enable Yahoo part $yahoo 69 70 --twitter=0/1 Disable/enable Twitter part $twitter 71 72 --purple=0/1 Disable/enable libpurple support $purple 70 73 71 74 --debug=0/1 Disable/enable debugging $debug … … 508 511 protoobjs='' 509 512 513 if [ "$purple" = 0 ]; then 514 echo '#undef WITH_PURPLE' >> config.h 515 else 516 if ! $PKG_CONFIG purple; then 517 echo 518 echo 'Cannot find libpurple development libraries, aborting. (Install libpurple-dev?)' 519 exit 1 520 fi 521 echo '#define WITH_PURPLE' >> config.h 522 cat<<EOF>>Makefile.settings 523 EFLAGS += $($PKG_CONFIG purple --libs) 524 PURPLE_CFLAGS += $($PKG_CONFIG purple --cflags) 525 EOF 526 protocols=$protocols'purple ' 527 protoobjs=$protoobjs'purple_mod.o ' 528 529 # Having both libpurple and native IM modules in one binary may 530 # do strange things. Let's not do that. 531 msn=0 532 jabber=0 533 oscar=0 534 yahoo=0 535 twitter=0 536 537 if [ "$events" = "libevent" ]; then 538 echo 539 echo 'Warning: Some libpurple modules (including msn-pecan) do their event handling' 540 echo 'outside libpurple, talking to GLib directly. At least for now the combination' 541 echo 'libpurple + libevent is *not* recommended!' 542 fi 543 fi 544 510 545 if [ "$msn" = 0 ]; then 511 546 echo '#undef WITH_MSN' >> config.h
Note: See TracChangeset
for help on using the changeset viewer.