Changes in configure [a7baf40:9ae8f82]
Legend:
- Unmodified
- Added
- Removed
-
configure
ra7baf40 r9ae8f82 35 35 jabber="default-on" 36 36 oscar="default-on" 37 yahoo="default-on" 37 38 38 39 twitter=1 … … 129 130 --jabber=0/1 Disable/enable Jabber part $jabber 130 131 --oscar=0/1 Disable/enable Oscar part (ICQ, AIM) $oscar 132 --yahoo=0/1 Disable/enable Yahoo part $yahoo 131 133 --twitter=0/1 Disable/enable Twitter part $twitter 132 134 … … 815 817 [ "$jabber" = "default-on" ] && jabber=0 816 818 [ "$oscar" = "default-on" ] && oscar=0 819 [ "$yahoo" = "default-on" ] && yahoo=0 817 820 818 821 echo '#undef PACKAGE' >> config.h … … 857 860 protocols=$protocols'oscar ' 858 861 protoobjs=$protoobjs'oscar_mod.o ' 862 fi 863 864 if [ "$yahoo" = 0 ]; then 865 echo '#undef WITH_YAHOO' >> config.h 866 else 867 echo '#define WITH_YAHOO' >> config.h 868 protocols=$protocols'yahoo ' 869 protoobjs=$protoobjs'yahoo_mod.o ' 859 870 fi 860 871
Note: See TracChangeset
for help on using the changeset viewer.