comparison configure.ac @ 8675:9ee2542d1104

[gaim-migrate @ 9428] A GroupWise plugin from Novell. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sat, 17 Apr 2004 13:55:28 +0000
parents 8c4f33ffe17c
children 831a0488a719
comparison
equal deleted inserted replaced
8674:8c7da2e36136 8675:9ee2542d1104
100 if test "x$STATIC_PRPLS" != "x" -a "x$DYNAMIC_PRPLS" = "xall"; then 100 if test "x$STATIC_PRPLS" != "x" -a "x$DYNAMIC_PRPLS" = "xall"; then
101 DYNAMIC_PRPLS="" 101 DYNAMIC_PRPLS=""
102 fi 102 fi
103 103
104 if test "x$STATIC_PRPLS" = "xall" ; then 104 if test "x$STATIC_PRPLS" = "xall" ; then
105 STATIC_PRPLS="gg irc jabber msn napster oscar yahoo zephyr" 105 STATIC_PRPLS="gg irc jabber msn napster novell oscar yahoo zephyr"
106 fi 106 fi
107 AC_SUBST(STATIC_PRPLS) 107 AC_SUBST(STATIC_PRPLS)
108 STATIC_LINK_LIBS= 108 STATIC_LINK_LIBS=
109 extern_init= 109 extern_init=
110 load_proto= 110 load_proto=
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 novell) static_novell=yes ;;
121 oscar) static_oscar=yes ;; 122 oscar) static_oscar=yes ;;
122 rendezvous) static_rendezvous=yes ;; 123 rendezvous) static_rendezvous=yes ;;
123 toc) static_toc=yes ;; 124 toc) static_toc=yes ;;
124 trepia) static_trepia=yes ;; 125 trepia) static_trepia=yes ;;
125 yahoo) static_yahoo=yes ;; 126 yahoo) static_yahoo=yes ;;
130 AM_CONDITIONAL(STATIC_GG, test "x$static_gg" = "xyes") 131 AM_CONDITIONAL(STATIC_GG, test "x$static_gg" = "xyes")
131 AM_CONDITIONAL(STATIC_IRC, test "x$static_irc" = "xyes") 132 AM_CONDITIONAL(STATIC_IRC, test "x$static_irc" = "xyes")
132 AM_CONDITIONAL(STATIC_JABBER, test "x$static_jabber" = "xyes") 133 AM_CONDITIONAL(STATIC_JABBER, test "x$static_jabber" = "xyes")
133 AM_CONDITIONAL(STATIC_MSN, test "x$static_msn" = "xyes") 134 AM_CONDITIONAL(STATIC_MSN, test "x$static_msn" = "xyes")
134 AM_CONDITIONAL(STATIC_NAPSTER, test "x$static_napster" = "xyes") 135 AM_CONDITIONAL(STATIC_NAPSTER, test "x$static_napster" = "xyes")
136 AM_CONDITIONAL(STATIC_NOVELL, test "x$static_novell" = "xyes")
135 AM_CONDITIONAL(STATIC_OSCAR, test "x$static_oscar" = "xyes") 137 AM_CONDITIONAL(STATIC_OSCAR, test "x$static_oscar" = "xyes")
136 AM_CONDITIONAL(STATIC_RENDEZVOUS, test "x$static_rendezvous" = "xyes") 138 AM_CONDITIONAL(STATIC_RENDEZVOUS, test "x$static_rendezvous" = "xyes")
137 AM_CONDITIONAL(STATIC_TOC, test "x$static_toc" = "xyes") 139 AM_CONDITIONAL(STATIC_TOC, test "x$static_toc" = "xyes")
138 AM_CONDITIONAL(STATIC_TREPIA, test "x$static_trepia" = "xyes") 140 AM_CONDITIONAL(STATIC_TREPIA, test "x$static_trepia" = "xyes")
139 AM_CONDITIONAL(STATIC_YAHOO, test "x$static_yahoo" = "xyes") 141 AM_CONDITIONAL(STATIC_YAHOO, test "x$static_yahoo" = "xyes")
142 AC_DEFINE_UNQUOTED(STATIC_PROTO_INIT, $extern_init void static_proto_init() { $load_proto }, 144 AC_DEFINE_UNQUOTED(STATIC_PROTO_INIT, $extern_init void static_proto_init() { $load_proto },
143 [Loads static protocol plugin module initialization functions.]) 145 [Loads static protocol plugin module initialization functions.])
144 146
145 AC_ARG_WITH(dynamic_prpls, [ --with-dynamic-prpls specify which protocols to build dynamically],[DYNAMIC_PRPLS=`echo $withval | $sedpath 's/,/ /g'`]) 147 AC_ARG_WITH(dynamic_prpls, [ --with-dynamic-prpls specify which protocols to build dynamically],[DYNAMIC_PRPLS=`echo $withval | $sedpath 's/,/ /g'`])
146 if test "x$DYNAMIC_PRPLS" = "xall" ; then 148 if test "x$DYNAMIC_PRPLS" = "xall" ; then
147 DYNAMIC_PRPLS="gg irc jabber msn napster oscar yahoo zephyr" 149 DYNAMIC_PRPLS="gg irc jabber msn napster novell oscar yahoo zephyr"
148 fi 150 fi
149 AC_SUBST(DYNAMIC_PRPLS) 151 AC_SUBST(DYNAMIC_PRPLS)
150 for i in $DYNAMIC_PRPLS ; do 152 for i in $DYNAMIC_PRPLS ; do
151 case $i in 153 case $i in
152 gg) dynamic_gg=yes ;; 154 gg) dynamic_gg=yes ;;
153 irc) dynamic_irc=yes ;; 155 irc) dynamic_irc=yes ;;
154 jabber) dynamic_jabber=yes ;; 156 jabber) dynamic_jabber=yes ;;
155 msn) dynamic_msn=yes ;; 157 msn) dynamic_msn=yes ;;
156 napster) dynamic_napster=yes ;; 158 napster) dynamic_napster=yes ;;
159 novell) dynamic_novell=yes ;;
157 oscar) dynamic_oscar=yes ;; 160 oscar) dynamic_oscar=yes ;;
158 rendezvous) dynamic_rendezvous=yes ;; 161 rendezvous) dynamic_rendezvous=yes ;;
159 toc) dynamic_toc=yes ;; 162 toc) dynamic_toc=yes ;;
160 trepia) dynamic_trepia=yes ;; 163 trepia) dynamic_trepia=yes ;;
161 yahoo) dynamic_yahoo=yes ;; 164 yahoo) dynamic_yahoo=yes ;;
166 AM_CONDITIONAL(DYNAMIC_GG, test "x$dynamic_gg" = "xyes") 169 AM_CONDITIONAL(DYNAMIC_GG, test "x$dynamic_gg" = "xyes")
167 AM_CONDITIONAL(DYNAMIC_IRC, test "x$dynamic_irc" = "xyes") 170 AM_CONDITIONAL(DYNAMIC_IRC, test "x$dynamic_irc" = "xyes")
168 AM_CONDITIONAL(DYNAMIC_JABBER, test "x$dynamic_jabber" = "xyes") 171 AM_CONDITIONAL(DYNAMIC_JABBER, test "x$dynamic_jabber" = "xyes")
169 AM_CONDITIONAL(DYNAMIC_MSN, test "x$dynamic_msn" = "xyes") 172 AM_CONDITIONAL(DYNAMIC_MSN, test "x$dynamic_msn" = "xyes")
170 AM_CONDITIONAL(DYNAMIC_NAPSTER, test "x$dynamic_napster" = "xyes") 173 AM_CONDITIONAL(DYNAMIC_NAPSTER, test "x$dynamic_napster" = "xyes")
174 AM_CONDITIONAL(DYNAMIC_NOVELL, test "x$dynamic_novell" = "xyes")
171 AM_CONDITIONAL(DYNAMIC_OSCAR, test "x$dynamic_oscar" = "xyes") 175 AM_CONDITIONAL(DYNAMIC_OSCAR, test "x$dynamic_oscar" = "xyes")
172 AM_CONDITIONAL(DYNAMIC_RENDEZVOUS, test "x$dynamic_rendezvous" = "xyes") 176 AM_CONDITIONAL(DYNAMIC_RENDEZVOUS, test "x$dynamic_rendezvous" = "xyes")
173 AM_CONDITIONAL(DYNAMIC_TOC, test "x$dynamic_toc" = "xyes") 177 AM_CONDITIONAL(DYNAMIC_TOC, test "x$dynamic_toc" = "xyes")
174 AM_CONDITIONAL(DYNAMIC_TREPIA, test "x$dynamic_trepia" = "xyes") 178 AM_CONDITIONAL(DYNAMIC_TREPIA, test "x$dynamic_trepia" = "xyes")
175 AM_CONDITIONAL(DYNAMIC_YAHOO, test "x$dynamic_yahoo" = "xyes") 179 AM_CONDITIONAL(DYNAMIC_YAHOO, test "x$dynamic_yahoo" = "xyes")
1095 src/protocols/gg/Makefile 1099 src/protocols/gg/Makefile
1096 src/protocols/irc/Makefile 1100 src/protocols/irc/Makefile
1097 src/protocols/jabber/Makefile 1101 src/protocols/jabber/Makefile
1098 src/protocols/msn/Makefile 1102 src/protocols/msn/Makefile
1099 src/protocols/napster/Makefile 1103 src/protocols/napster/Makefile
1104 src/protocols/novell/Makefile
1100 src/protocols/oscar/Makefile 1105 src/protocols/oscar/Makefile
1101 src/protocols/rendezvous/Makefile 1106 src/protocols/rendezvous/Makefile
1102 src/protocols/toc/Makefile 1107 src/protocols/toc/Makefile
1103 src/protocols/trepia/Makefile 1108 src/protocols/trepia/Makefile
1104 src/protocols/yahoo/Makefile 1109 src/protocols/yahoo/Makefile