Mercurial > pidgin.yaz
changeset 529:e6ba7ab7c349
[gaim-migrate @ 539]
--disable-feature works as expected.
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Wed, 26 Jul 2000 22:02:27 +0000 |
parents | d9e638d13e5a |
children | 05f01078d133 |
files | configure.in |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/configure.in Wed Jul 26 19:58:54 2000 +0000 +++ b/configure.in Wed Jul 26 22:02:27 2000 +0000 @@ -32,11 +32,11 @@ dnl This is a bad, bad hack. I am a bad, bad man. CFLAGS="$CFLAGS -I/usr/local/include -I/opt/include -I../" -AC_ARG_ENABLE(debug, [ --enable-debug compile with debugging support],enable_debug=yes,) -AC_ARG_ENABLE(gnome, [ --enable-gnome compile as a GNOME applet],enable_gnome=yes,) -AM_CONDITIONAL(GNOMEAPPLET, test x$enable_gnome = xyes) +AC_ARG_ENABLE(debug, [ --enable-debug compile with debugging support],,enable_debug=no) +AC_ARG_ENABLE(gnome, [ --enable-gnome compile as a GNOME applet],,enable_gnome=no) +AM_CONDITIONAL(GNOMEAPPLET, test "x$enable_gnome" = "xyes") AC_ARG_ENABLE(esd, [ --disable-esd Turn off ESD (default=auto)],enable_esd=no,enable_esd=yes) -AC_ARG_ENABLE(nas, [ --enable-nas Enable NAS (Network Audio System) support],enable_nas=yes,) +AC_ARG_ENABLE(nas, [ --enable-nas Enable NAS (Network Audio System) support],,enable_nas=no) AC_ARG_ENABLE(plugins, [ --disable-plugins compile with out plugin support],enable_plugins=no,enable_plugins=yes) AM_CONDITIONAL(PLUGINS, test x$enable_plugins = xyes) @@ -53,7 +53,7 @@ CFLAGS="$CFLAGS -I../libfaim -I../libfaim/faim" LDADD="$LDADD -L../libfaim -lfaim -pthread" -if test "$enable_gnome" = yes ; then +if test "x$enable_gnome" = "xyes" ; then GNOME_INIT(applets) GNOME_X_CHECKS CFLAGS="$CFLAGS $GNOME_INCLUDEDIR"