comparison configure.in @ 423:0d4e80bdb96b

[gaim-migrate @ 433] No more --enable-oscar option. From now on, it's a toggle in the preferences. PLEASE DO NOT USE OSCAR, even though it's very easy to. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 21 Jun 2000 19:33:58 +0000
parents e2610cc1fcb3
children e1c09b8c8bb1
comparison
equal deleted inserted replaced
422:7cd05539952d 423:0d4e80bdb96b
34 34
35 AC_ARG_ENABLE(debug, [ --enable-debug compile with debugging support],enable_debug=yes,) 35 AC_ARG_ENABLE(debug, [ --enable-debug compile with debugging support],enable_debug=yes,)
36 AC_ARG_ENABLE(gnome, [ --enable-gnome compile as a GNOME applet],enable_gnome=yes,) 36 AC_ARG_ENABLE(gnome, [ --enable-gnome compile as a GNOME applet],enable_gnome=yes,)
37 AM_CONDITIONAL(GNOMEAPPLET, test x$enable_gnome = xyes) 37 AM_CONDITIONAL(GNOMEAPPLET, test x$enable_gnome = xyes)
38 AC_ARG_ENABLE(esd, [ --disable-esd Turn off ESD (default=auto)],enable_esd=no,enable_esd=yes) 38 AC_ARG_ENABLE(esd, [ --disable-esd Turn off ESD (default=auto)],enable_esd=no,enable_esd=yes)
39 AC_ARG_ENABLE(oscar, [ --enable-oscar Enable Oscar support (experimental)],enable_oscar=yes,)
40 AC_ARG_ENABLE(nas, [ --enable-nas Enable NAS (Network Audio System) support],enable_nas=yes,) 39 AC_ARG_ENABLE(nas, [ --enable-nas Enable NAS (Network Audio System) support],enable_nas=yes,)
41 AC_ARG_ENABLE(plugins, [ --disable-plugins compile with out plugin support],enable_plugins=no,enable_plugins=yes) 40 AC_ARG_ENABLE(plugins, [ --disable-plugins compile with out plugin support],enable_plugins=no,enable_plugins=yes)
42 AM_CONDITIONAL(PLUGINS, test x$enable_plugins = xyes) 41 AM_CONDITIONAL(PLUGINS, test x$enable_plugins = xyes)
43
44 LIBFAIM_DO=""
45 42
46 if test "$enable_debug" = yes ; then 43 if test "$enable_debug" = yes ; then
47 dnl someone please tell me what -d does 44 dnl someone please tell me what -d does
48 dnl CFLAGS="$CFLAGS -Wall -d -g" 45 dnl CFLAGS="$CFLAGS -Wall -d -g"
49 CFLAGS="$CFLAGS -Wall -g" 46 CFLAGS="$CFLAGS -Wall -g"
50 AC_DEFINE(DEBUG) 47 AC_DEFINE(DEBUG)
51 fi 48 fi
52 49
53 if test "$enable_oscar" = yes ; then
54 CFLAGS="$CFLAGS -I../libfaim/faim"
55 AC_DEFINE(USE_OSCAR)
56 LDADD="$LDADD -L../libfaim -lfaim -pthread"
57 LIBFAIM_DO="libfaim.a"
58 fi
59
60 AM_PATH_GLIB(1.2.0) 50 AM_PATH_GLIB(1.2.0)
61 AM_PATH_GTK(1.2.0,,,gthread) 51 AM_PATH_GTK(1.2.0,,,gthread)
62 LIBS="$LIBS $GTK_LIBS" 52 LIBS="$LIBS $GTK_LIBS"
53 CFLAGS="$CFLAGS -I../libfaim/faim"
54 LDADD="$LDADD -L../libfaim -lfaim -pthread"
63 55
64 if test "$enable_gnome" = yes ; then 56 if test "$enable_gnome" = yes ; then
65 GNOME_INIT(applets) 57 GNOME_INIT(applets)
66 GNOME_X_CHECKS 58 GNOME_X_CHECKS
67 CFLAGS="$CFLAGS $GNOME_INCLUDEDIR" 59 CFLAGS="$CFLAGS $GNOME_INCLUDEDIR"