comparison configure.ac @ 8637:dc5f694e1cab

[gaim-migrate @ 9389] Rendezvous shouldn't cause any problems, but you still won't show up in other people's buddy lists. I'm willing to accept bug fixes, but no patches for new functionality. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 12 Apr 2004 01:37:18 +0000
parents b11948aed48c
children 8c4f33ffe17c
comparison
equal deleted inserted replaced
8636:005c96dab551 8637:dc5f694e1cab
111 for i in $STATIC_PRPLS ; do 111 for i in $STATIC_PRPLS ; do
112 STATIC_LINK_LIBS="$STATIC_LINK_LIBS protocols/$i/lib$i.a" 112 STATIC_LINK_LIBS="$STATIC_LINK_LIBS protocols/$i/lib$i.a"
113 extern_init="$extern_init extern gboolean gaim_init_${i}_plugin();" 113 extern_init="$extern_init extern gboolean gaim_init_${i}_plugin();"
114 load_proto="$load_proto gaim_init_${i}_plugin();" 114 load_proto="$load_proto gaim_init_${i}_plugin();"
115 case $i in 115 case $i in
116 gg) static_gg=yes ;; 116 gg) static_gg=yes ;;
117 irc) static_irc=yes ;; 117 irc) static_irc=yes ;;
118 jabber) static_jabber=yes ;; 118 jabber) static_jabber=yes ;;
119 msn) static_msn=yes ;; 119 msn) static_msn=yes ;;
120 napster) static_napster=yes ;; 120 napster) static_napster=yes ;;
121 oscar) static_oscar=yes ;; 121 oscar) static_oscar=yes ;;
122 toc) static_toc=yes ;; 122 rendezvous) static_rendezvous=yes ;;
123 trepia) static_trepia=yes ;; 123 toc) static_toc=yes ;;
124 yahoo) static_yahoo=yes ;; 124 trepia) static_trepia=yes ;;
125 zephyr) static_zephyr=yes ;; 125 yahoo) static_yahoo=yes ;;
126 *) echo "Invalid static protocol $i!!" ; exit ;; 126 zephyr) static_zephyr=yes ;;
127 *) echo "Invalid static protocol $i!!" ; exit ;;
127 esac 128 esac
128 done 129 done
129 AM_CONDITIONAL(STATIC_GG, test "x$static_gg" = "xyes") 130 AM_CONDITIONAL(STATIC_GG, test "x$static_gg" = "xyes")
130 AM_CONDITIONAL(STATIC_IRC, test "x$static_irc" = "xyes") 131 AM_CONDITIONAL(STATIC_IRC, test "x$static_irc" = "xyes")
131 AM_CONDITIONAL(STATIC_JABBER, test "x$static_jabber" = "xyes") 132 AM_CONDITIONAL(STATIC_JABBER, test "x$static_jabber" = "xyes")
132 AM_CONDITIONAL(STATIC_MSN, test "x$static_msn" = "xyes") 133 AM_CONDITIONAL(STATIC_MSN, test "x$static_msn" = "xyes")
133 AM_CONDITIONAL(STATIC_NAPSTER, test "x$static_napster" = "xyes") 134 AM_CONDITIONAL(STATIC_NAPSTER, test "x$static_napster" = "xyes")
134 AM_CONDITIONAL(STATIC_OSCAR, test "x$static_oscar" = "xyes") 135 AM_CONDITIONAL(STATIC_OSCAR, test "x$static_oscar" = "xyes")
136 AM_CONDITIONAL(STATIC_RENDEZVOUS, test "x$static_rendezvous" = "xyes")
135 AM_CONDITIONAL(STATIC_TOC, test "x$static_toc" = "xyes") 137 AM_CONDITIONAL(STATIC_TOC, test "x$static_toc" = "xyes")
136 AM_CONDITIONAL(STATIC_TREPIA, test "x$static_trepia" = "xyes") 138 AM_CONDITIONAL(STATIC_TREPIA, test "x$static_trepia" = "xyes")
137 AM_CONDITIONAL(STATIC_YAHOO, test "x$static_yahoo" = "xyes") 139 AM_CONDITIONAL(STATIC_YAHOO, test "x$static_yahoo" = "xyes")
138 AM_CONDITIONAL(STATIC_ZEPHYR, test "x$static_zephyr" = "xyes") 140 AM_CONDITIONAL(STATIC_ZEPHYR, test "x$static_zephyr" = "xyes")
139 AC_SUBST(STATIC_LINK_LIBS) 141 AC_SUBST(STATIC_LINK_LIBS)
145 DYNAMIC_PRPLS="gg irc jabber msn napster oscar yahoo zephyr" 147 DYNAMIC_PRPLS="gg irc jabber msn napster oscar yahoo zephyr"
146 fi 148 fi
147 AC_SUBST(DYNAMIC_PRPLS) 149 AC_SUBST(DYNAMIC_PRPLS)
148 for i in $DYNAMIC_PRPLS ; do 150 for i in $DYNAMIC_PRPLS ; do
149 case $i in 151 case $i in
150 gg) dynamic_gg=yes ;; 152 gg) dynamic_gg=yes ;;
151 irc) dynamic_irc=yes ;; 153 irc) dynamic_irc=yes ;;
152 jabber) dynamic_jabber=yes ;; 154 jabber) dynamic_jabber=yes ;;
153 msn) dynamic_msn=yes ;; 155 msn) dynamic_msn=yes ;;
154 napster) dynamic_napster=yes ;; 156 napster) dynamic_napster=yes ;;
155 oscar) dynamic_oscar=yes ;; 157 oscar) dynamic_oscar=yes ;;
156 toc) dynamic_toc=yes ;; 158 rendezvous) dynamic_rendezvous=yes ;;
157 trepia) dynamic_trepia=yes ;; 159 toc) dynamic_toc=yes ;;
158 yahoo) dynamic_yahoo=yes ;; 160 trepia) dynamic_trepia=yes ;;
159 zephyr) dynamic_zephyr=yes ;; 161 yahoo) dynamic_yahoo=yes ;;
160 *) echo "Invalid dynamic protocol $i!!" ; exit ;; 162 zephyr) dynamic_zephyr=yes ;;
163 *) echo "Invalid dynamic protocol $i!!" ; exit ;;
161 esac 164 esac
162 done 165 done
163 AM_CONDITIONAL(DYNAMIC_GG, test "x$dynamic_gg" = "xyes") 166 AM_CONDITIONAL(DYNAMIC_GG, test "x$dynamic_gg" = "xyes")
164 AM_CONDITIONAL(DYNAMIC_IRC, test "x$dynamic_irc" = "xyes") 167 AM_CONDITIONAL(DYNAMIC_IRC, test "x$dynamic_irc" = "xyes")
165 AM_CONDITIONAL(DYNAMIC_JABBER, test "x$dynamic_jabber" = "xyes") 168 AM_CONDITIONAL(DYNAMIC_JABBER, test "x$dynamic_jabber" = "xyes")
166 AM_CONDITIONAL(DYNAMIC_MSN, test "x$dynamic_msn" = "xyes") 169 AM_CONDITIONAL(DYNAMIC_MSN, test "x$dynamic_msn" = "xyes")
167 AM_CONDITIONAL(DYNAMIC_NAPSTER, test "x$dynamic_napster" = "xyes") 170 AM_CONDITIONAL(DYNAMIC_NAPSTER, test "x$dynamic_napster" = "xyes")
168 AM_CONDITIONAL(DYNAMIC_OSCAR, test "x$dynamic_oscar" = "xyes") 171 AM_CONDITIONAL(DYNAMIC_OSCAR, test "x$dynamic_oscar" = "xyes")
172 AM_CONDITIONAL(DYNAMIC_RENDEZVOUS, test "x$dynamic_rendezvous" = "xyes")
169 AM_CONDITIONAL(DYNAMIC_TOC, test "x$dynamic_toc" = "xyes") 173 AM_CONDITIONAL(DYNAMIC_TOC, test "x$dynamic_toc" = "xyes")
170 AM_CONDITIONAL(DYNAMIC_TREPIA, test "x$dynamic_trepia" = "xyes") 174 AM_CONDITIONAL(DYNAMIC_TREPIA, test "x$dynamic_trepia" = "xyes")
171 AM_CONDITIONAL(DYNAMIC_YAHOO, test "x$dynamic_yahoo" = "xyes") 175 AM_CONDITIONAL(DYNAMIC_YAHOO, test "x$dynamic_yahoo" = "xyes")
172 AM_CONDITIONAL(DYNAMIC_ZEPHYR, test "x$dynamic_zephyr" = "xyes") 176 AM_CONDITIONAL(DYNAMIC_ZEPHYR, test "x$dynamic_zephyr" = "xyes")
173 177
1075 src/protocols/irc/Makefile 1079 src/protocols/irc/Makefile
1076 src/protocols/jabber/Makefile 1080 src/protocols/jabber/Makefile
1077 src/protocols/msn/Makefile 1081 src/protocols/msn/Makefile
1078 src/protocols/napster/Makefile 1082 src/protocols/napster/Makefile
1079 src/protocols/oscar/Makefile 1083 src/protocols/oscar/Makefile
1084 src/protocols/rendezvous/Makefile
1080 src/protocols/toc/Makefile 1085 src/protocols/toc/Makefile
1081 src/protocols/trepia/Makefile 1086 src/protocols/trepia/Makefile
1082 src/protocols/yahoo/Makefile 1087 src/protocols/yahoo/Makefile
1083 src/protocols/zephyr/Makefile 1088 src/protocols/zephyr/Makefile
1084 gaim.spec 1089 gaim.spec