Mercurial > pidgin
view configure.in @ 412:ad08e67ec874
[gaim-migrate @ 422]
A woman went to her doctor for advice. She told him that her husband had
developed a penchant for anal sex, and she was not sure that it was such
a good idea.
The doctor asked, "Do you enjoy it?"
She said that she did.
He asked, "Does it hurt you?"
She said that it didn't.
The doctor then told her, "Well, then, there's no reason that you
shouldn't practice anal sex, if that's what you like, so long as you
take care not to get pregnant."
The woman was mystified. She asked "You can get pregnant from anal sex?"
The doctor replied, "Of course. Where do you think attorneys come from?"
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Fri, 16 Jun 2000 09:29:36 +0000 |
parents | a658f480a1b7 |
children | aaff245272b5 |
line wrap: on
line source
dnl Process this file with autoconf to produce a configure script. AC_INIT(src/aim.c) AM_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE([gaim], [0.9.20]) dnl Checks for programs. AM_PROG_LIBTOOL AC_PROG_CC AC_PROG_INSTALL ALL_LINGUAS="de fr" AM_GNU_GETTEXT AC_CYGWIN dnl Checks for header files. AC_HEADER_STDC AC_HEADER_SYS_WAIT AC_CHECK_HEADERS(fcntl.h sys/time.h unistd.h locale.h) AC_CHECK_HEADERS(pthread.h,,AC_MSG_ERROR([*** POSIX thread support not found ***])) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_STRUCT_TM dnl Checks for library functions. AC_TYPE_SIGNAL AC_FUNC_STRFTIME AC_CHECK_FUNCS(socket strdup strstr atexit) 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(esd, [ --disable-esd Turn off ESD (default=auto)],enable_esd=no,enable_esd=yes) AC_ARG_ENABLE(oscar, [ --enable-oscar Enable Oscar support (experimental)],enable_oscar=yes,) AC_ARG_ENABLE(nas, [ --enable-nas Enable NAS (Network Audio System) support],enable_nas=yes,) 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) LIBFAIM_DO="" if test "$enable_debug" = yes ; then dnl someone please tell me what -d does dnl CFLAGS="$CFLAGS -Wall -d -g" CFLAGS="$CFLAGS -Wall -g" AC_DEFINE(DEBUG) fi if test "$enable_oscar" = yes ; then CFLAGS="$CFLAGS -I../libfaim/faim" AC_DEFINE(USE_OSCAR) LDADD="$LDADD -L../libfaim -lfaim -pthread" LIBFAIM_DO="libfaim.a" fi AM_PATH_GLIB(1.2.0) AM_PATH_GTK(1.2.0,,,gthread) LIBS="$LIBS $GTK_LIBS" if test "$enable_gnome" = yes ; then GNOME_INIT(applets) GNOME_X_CHECKS CFLAGS="$CFLAGS $GNOME_INCLUDEDIR" AC_DEFINE(USE_APPLET) LIBS="$LIBS $GNOME_LIBDIR $GNOME_APPLETS_LIBS" fi CFLAGS="$CFLAGS $GTK_CFLAGS" if test "$enable_plugins" = yes ; then AC_DEFINE(GAIM_PLUGINS) fi if test "$enable_nas" = yes ; then AC_DEFINE(NAS_SOUND) LIBS="$LIBS -laudio" fi if test "$enable_esd" = yes ; then AM_PATH_GESD if test "$no_esd" != yes ; then CFLAGS="$CFLAGS $ESD_CFLAGS" AC_DEFINE(ESD_SOUND) LDADD="$LDADD $ESD_LIBS" fi fi if test "$ac_cv_cygwin" = yes ; then LDADD="$LDADD -static" CFLAGS="$CFLAGS -Wall -g" AC_DEFINE(DEBUG) fi AC_SUBST(CFLAGS) AC_SUBST(LDADD) AC_SUBST(LIBS) AC_SUBST(LIBFAIM_DO) AC_OUTPUT([Makefile src/Makefile intl/Makefile sounds/Makefile plugins/Makefile pixmaps/Makefile libfaim/Makefile po/Makefile.in doc/Makefile m4/Makefile gaim.spec ])