renatofilho@320: # -*- Autoconf -*- renatofilho@320: # Process this file with autoconf to produce a configure script. renatofilho@320: renatofilho@320: AC_PREREQ(2.50) renatofilho@320: renatofilho@320: AC_INIT([gmyth],[0.1]) renatofilho@320: renatofilho@320: dnl AC_CONFIG_SRCDIR([src/mmyth_main.c]) renatofilho@320: AC_CONFIG_HEADER(config.h) renatofilho@320: renatofilho@320: dnl when going to/from release please set the nano (fourth number) right ! renatofilho@320: dnl releases only do Wall, SVN and prerelease does Werror too renatofilho@320: AS_VERSION(gmyth, GMYTH, 0, 1, 0, 3, GMYTH_SVN="no", GMYTH_SVN="yes") renatofilho@320: GMYTH_MAJORMINOR=$GMYTH_MAJOR_VERSION.$GMYTH_MINOR_VERSION renatofilho@320: AC_SUBST(GMYTH_MAJORMINOR) renatofilho@320: renatofilho@320: dnl AM_MAINTAINER_MODE provides the option to enable maintainer mode renatofilho@320: AM_MAINTAINER_MODE renatofilho@320: dnl make aclocal work in maintainer mode renatofilho@320: AC_SUBST(ACLOCAL_AMFLAGS, "-I m4") renatofilho@320: renatofilho@320: # Checks for programs. renatofilho@320: # check for tools renatofilho@320: # Make sure CFLAGS is defined to stop AC_PROC_CC adding -g renatofilho@320: CFLAGS="$CFLAGS -Wall" renatofilho@320: AC_PROG_CC renatofilho@320: AC_PROG_LIBTOOL renatofilho@320: renatofilho@320: dnl Generate doxygen documentation renatofilho@320: DX_HTML_FEATURE(ON) renatofilho@320: DX_CHM_FEATURE(OFF) renatofilho@320: DX_CHI_FEATURE(OFF) renatofilho@320: DX_MAN_FEATURE(OFF) renatofilho@320: DX_RTF_FEATURE(OFF) renatofilho@320: DX_XML_FEATURE(OFF) renatofilho@320: DX_PDF_FEATURE(OFF) renatofilho@320: DX_PS_FEATURE(OFF) renatofilho@320: DX_INIT_DOXYGEN(gmyth, doxygen.cfg, docs) renatofilho@320: renatofilho@320: # Checks for libraries. renatofilho@320: renatofilho@320: # Checks for header files. renatofilho@320: AC_HEADER_STDC renatofilho@320: AC_CHECK_HEADERS([fcntl.h stdint.h stdlib.h string.h sys/ioctl.h sys/socket.h unistd.h]) renatofilho@320: renatofilho@320: # Checks for typedefs, structures, and compiler characteristics. renatofilho@320: AC_C_CONST renatofilho@320: AC_TYPE_PID_T renatofilho@320: AC_STRUCT_TM renatofilho@320: AC_HEADER_TIME renatofilho@320: AC_HEADER_STDBOOL renatofilho@320: renatofilho@320: # Checks for library functions. renatofilho@320: AC_FUNC_FORK renatofilho@320: AC_FUNC_STRFTIME renatofilho@320: AC_FUNC_SELECT_ARGTYPES renatofilho@320: AC_PROG_GCC_TRADITIONAL renatofilho@320: AC_FUNC_MALLOC renatofilho@320: AC_FUNC_MKTIME renatofilho@320: AC_FUNC_STRFTIME renatofilho@320: AC_FUNC_VPRINTF renatofilho@320: AC_CHECK_FUNCS([memset socket stime strstr strtoul gethostname inet_ntoa localtime_r select strrchr localtime strptime]) renatofilho@320: renatofilho@320: ############################## renatofilho@320: # Checks for Network functions renatofilho@320: ############################## renatofilho@320: renatofilho@320: AC_CHECK_FUNCS([socket]) renatofilho@320: AC_CHECK_FUNCS([inet_ntoa]) renatofilho@320: AC_CHECK_HEADERS([ifaddrs.h]) renatofilho@320: AC_CHECK_FUNCS([getifaddrs]) renatofilho@320: AC_CHECK_FUNCS([time]) renatofilho@320: renatofilho@320: AM_INIT_AUTOMAKE($PACKAGE, $VERSION) renatofilho@320: renatofilho@320: CFLAGS="$CFLAGS -I/usr/include" renatofilho@320: LDFLAGS="$LDFLAGS -L/usr/lib" renatofilho@320: renatofilho@320: # Checks required packages renatofilho@320: renatofilho@320: dnl Test if --disable-debug given renatofilho@320: AC_ARG_ENABLE(debug, renatofilho@320: AC_HELP_STRING([--disable-debug], [enable debugging mode])) renatofilho@320: if test x"$enable_debug" != xno; then renatofilho@320: CFLAGS="$CFLAGS -g -DGMYTH_USE_DEBUG" renatofilho@320: else renatofilho@320: CFLAGS="$CFLAGS -O2 -DG_DISABLE_CHECKS" renatofilho@320: fi renatofilho@320: renatofilho@320: # Check for pkgconfig renatofilho@320: AC_CHECK_PROG(HAVE_PKGCONFIG, pkg-config, yes, no) renatofilho@320: # Give error and exit if we don't have pkgconfig renatofilho@320: if test "x$HAVE_PKGCONFIG" = "xno"; then renatofilho@320: AC_MSG_ERROR(you need to have pkgconfig installed !) renatofilho@320: fi renatofilho@320: renatofilho@320: # Check for Glib2.0 renatofilho@320: PKG_CHECK_MODULES(GLIB, glib-2.0, HAVE_GLIB=yes,HAVE_GLIB=no) renatofilho@320: renatofilho@320: # Give error and exit if we don't have glib renatofilho@320: if test "x$HAVE_GLIB" = "xno"; then renatofilho@320: AC_MSG_ERROR(you need glib-2.0 installed) renatofilho@320: fi renatofilho@320: renatofilho@320: # make GLIB_CFLAGS and GLIB_LIBS available renatofilho@320: AC_SUBST(GLIB_CFLAGS) renatofilho@320: AC_SUBST(GLIB_LIBS) renatofilho@320: renatofilho@320: # Check for GObject2.0 renatofilho@320: PKG_CHECK_MODULES(GOBJECT, renatofilho@320: gobject-2.0, renatofilho@320: HAVE_GOBJECT=yes, HAVE_GOBJECT=no) renatofilho@320: renatofilho@320: # Give error and exit if we don't have gobject renatofilho@320: if test "x$HAVE_GOBJECT" = "xno"; then renatofilho@320: AC_MSG_ERROR(you need gobject-2.0 installed) renatofilho@320: fi renatofilho@320: renatofilho@320: # make GOBJECT_CFLAGS and GOBJECT_LIBS available renatofilho@320: AC_SUBST(GOBJECT_CFLAGS) renatofilho@320: AC_SUBST(GOBJECT_LIBS) renatofilho@320: renatofilho@320: # Check for libxml-2.0 renatofilho@320: PKG_CHECK_MODULES(LIBXML, libxml-2.0, HAVE_LIBXML=yes,HAVE_LIBXML=no) renatofilho@320: renatofilho@320: # Give error and exit if we don't have libxml renatofilho@320: if test "x$HAVE_LIBXML" = "xno"; then renatofilho@320: AC_MSG_ERROR(you need libxml-2.0 installed) renatofilho@320: fi renatofilho@320: renatofilho@320: # make LIBXML_CFLAGS and LIBXML_LIBS available renatofilho@320: AC_SUBST(LIBXML_CFLAGS) renatofilho@320: AC_SUBST(LIBXML_LIBS) renatofilho@320: renatofilho@320: # Check for libcurl renatofilho@320: PKG_CHECK_MODULES(LIBCURL, libcurl, HAVE_LIBCRUL=yes, HAVE_LIBCURL=no) renatofilho@320: renatofilho@320: # Give error and exit if we don't have libcurl renatofilho@320: if test "x$HAVE_LIBCURL" = "xno"; then renatofilho@320: AC_MSG_ERROR(you need libcurl installed) renatofilho@320: fi renatofilho@320: renatofilho@320: # make LIBCURL_CFLAGS and LIBCURL_LIBS available renatofilho@320: AC_SUBST(LIBCURL_CFLAGS) renatofilho@320: AC_SUBST(LIBCURL_LIBS) renatofilho@320: renatofilho@320: renatofilho@320: # renatofilho@320: # mysql libraries renatofilho@320: # renatofilho@320: AC_CHECK_PROG(MYSQL_CFLAGS,mysql_config,`mysql_config --cflags`) renatofilho@320: if test -z "$MYSQL_CFLAGS"; then renatofilho@320: AC_MSG_ERROR([Could not find mysql_config script. Make sure the mysql client libraries are installed]) renatofilho@320: fi renatofilho@320: AC_SUBST(MYSQL_CFLAGS) renatofilho@320: renatofilho@320: renatofilho@320: AC_CHECK_PROG(MYSQL_LIBS,mysql_config,`mysql_config --libs`) renatofilho@320: if test -z "$MYSQL_LIBS"; then renatofilho@320: AC_MSG_ERROR([Could not find mysql_config script. Make sure the mysql client libraries are installed]) renatofilho@320: fi renatofilho@320: AC_SUBST(MYSQL_LIBS) renatofilho@320: renatofilho@320: #dnl Enable gtk-doc renatofilho@320: #GTK_DOC_CHECK(1.4) renatofilho@320: renatofilho@320: AC_SUBST(CFLAGS) renatofilho@320: AC_SUBST(LDFLAGS) renatofilho@320: AC_SUBST(LIBS) renatofilho@320: renatofilho@320: AC_OUTPUT([ renatofilho@320: Makefile renatofilho@320: src/Makefile renatofilho@320: tests/Makefile renatofilho@320: gmyth.pc]) renatofilho@320: renatofilho@320: if test "x$enable_debug" != "xno"; then renatofilho@320: AC_MSG_NOTICE([Debug: Enabled]) renatofilho@320: else renatofilho@320: AC_MSG_NOTICE([Debug: Disabled]) renatofilho@320: fi renatofilho@320: