comparison configure.in @ 1314:5ad8344b6e50

[gaim-migrate @ 1324] more changes to whether jabber is compiled or not committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 19 Dec 2000 14:08:06 +0000
parents 338b8ac6bdab
children ff50d396c2bc
comparison
equal deleted inserted replaced
1313:9089f72972ee 1314:5ad8344b6e50
45 AC_ARG_ENABLE(panel, [ --enable-panel compile as a GNOME applet],,enable_panel=$enable_distrib) 45 AC_ARG_ENABLE(panel, [ --enable-panel compile as a GNOME applet],,enable_panel=$enable_distrib)
46 AM_CONDITIONAL(GNOMEAPPLET, test "x$enable_panel" = "xyes") 46 AM_CONDITIONAL(GNOMEAPPLET, test "x$enable_panel" = "xyes")
47 AC_ARG_ENABLE(esd, [ --disable-esd Turn off ESD (default=auto)],,enable_esd=yes) 47 AC_ARG_ENABLE(esd, [ --disable-esd Turn off ESD (default=auto)],,enable_esd=yes)
48 AC_ARG_ENABLE(nas, [ --enable-nas Enable NAS (Network Audio System) support],,enable_nas=no) 48 AC_ARG_ENABLE(nas, [ --enable-nas Enable NAS (Network Audio System) support],,enable_nas=no)
49 AC_ARG_ENABLE(plugins, [ --disable-plugins compile without plugin support],,enable_plugins=yes) 49 AC_ARG_ENABLE(plugins, [ --disable-plugins compile without plugin support],,enable_plugins=yes)
50 AC_ARG_ENABLE(jabber, [ --enable-jabber compile the jabber plugin (requires libxode and libjabber)],,enable_jabber=no) 50 AC_ARG_ENABLE(jabber, [ --disable-jabber compile the jabber plugin (requires libxode and libjabber)],,enable_jabber=yes)
51 AC_ARG_ENABLE(perl, [ --disable-perl compile without perl scripting],,enable_perl=yes) 51 AC_ARG_ENABLE(perl, [ --disable-perl compile without perl scripting],,enable_perl=yes)
52 AC_ARG_ENABLE(debug, [ --enable-debug compile with debugging support],,enable_debug=no) 52 AC_ARG_ENABLE(debug, [ --enable-debug compile with debugging support],,enable_debug=no)
53 AC_ARG_ENABLE(screensaver, [ --disable-screensaver compile without X screensaver extension],,enable_xss=yes) 53 AC_ARG_ENABLE(screensaver, [ --disable-screensaver compile without X screensaver extension],,enable_xss=yes)
54 AM_CONDITIONAL(PLUGINS, test "x$enable_plugins" = "xyes") 54 AM_CONDITIONAL(PLUGINS, test "x$enable_plugins" = "xyes")
55 AC_ARG_ENABLE(,,,) 55 AC_ARG_ENABLE(,,,)
193 else 193 else
194 enable_jabber=no 194 enable_jabber=no
195 fi 195 fi
196 196
197 if test "$enable_jabber" = yes ; then 197 if test "$enable_jabber" = yes ; then
198 AC_CHECK_LIB(xode, XML_ParserCreate, , enable_jabber=no)
199 AC_CHECK_LIB(jabber, jid_new, , enable_jabber=no, -lxode)
198 AC_CHECK_FUNCS(snprintf) 200 AC_CHECK_FUNCS(snprintf)
199 AC_CHECK_LIB(nsl, gethostent) 201 AC_CHECK_LIB(nsl, gethostent)
200 AC_CHECK_FUNCS(connect) 202 AC_CHECK_FUNCS(connect)
201 AM_CONDITIONAL(JABBER, test "x$enable_jabber" = "xyes") 203 AM_CONDITIONAL(JABBER, test "x$enable_jabber" = "xyes")
202 fi 204 fi
231 echo Build as GNOME applet...... : $enable_panel 233 echo Build as GNOME applet...... : $enable_panel
232 echo 234 echo
233 echo Build with Plugin support.. : $enable_plugins 235 echo Build with Plugin support.. : $enable_plugins
234 echo Build with Perl support.... : $enable_perl 236 echo Build with Perl support.... : $enable_perl
235 echo 237 echo
236 #echo Build Jabber PRPL.......... : $enable_jabber 238 echo Build Jabber PRPL.......... : $enable_jabber
237 #echo 239 echo
238 echo Build with ESD............. : $enable_esd 240 echo Build with ESD............. : $enable_esd
239 echo Build with NAS............. : $enable_nas 241 echo Build with NAS............. : $enable_nas
240 echo 242 echo
241 echo Print debugging messages... : $enable_debug 243 echo Print debugging messages... : $enable_debug
242 echo 244 echo