Legend:
- Unmodified
- Added
- Removed
-
configure
r4f6dfbb r3434a8c 32 32 jabber="default-on" 33 33 oscar="default-on" 34 rpc="rpc-on" 34 35 yahoo="default-on" 35 36 … … 93 94 --purple=0/1 Disable/enable libpurple support $purple 94 95 (automatically disables other protocol modules) 96 --rpc=0/1 Disable/enable RPC interface $rpc 95 97 96 98 --debug=0/1 Disable/enable debugging $debug … … 793 795 protocols=$protocols'twitter ' 794 796 protoobjs=$protoobjs'twitter_mod.o ' 797 fi 798 799 if [ "$rpc" = 0 ]; then 800 echo '#undef WITH_RPC' >> config.h 801 else 802 echo '#define WITH_RPC' >> config.h 803 protocols=$protocols'rpc ' 804 protoobjs=$protoobjs'rpc_mod.o ' 795 805 fi 796 806
Note: See TracChangeset
for help on using the changeset viewer.