Changeset 796da03
- Timestamp:
- 2009-10-04T23:28:11Z (15 years ago)
- Branches:
- master
- Children:
- 860ba6a
- Parents:
- e59b4f6
- Files:
-
- 2 added
- 2 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!" -
protocols/nogaim.c
re59b4f6 r796da03 118 118 extern void byahoo_initmodule(); 119 119 extern void jabber_initmodule(); 120 extern void purple_initmodule(); 120 121 121 122 #ifdef WITH_MSN … … 133 134 #ifdef WITH_JABBER 134 135 jabber_initmodule(); 136 #endif 137 138 #ifdef WITH_PURPLE 139 purple_initmodule(); 135 140 #endif 136 141
Note: See TracChangeset
for help on using the changeset viewer.