renatofilho@21: # -*- Autoconf -*- renatofilho@21: # Process this file with autoconf to produce a configure script. renatofilho@21: renatofilho@21: AC_PREREQ(2.50) renatofilho@21: melunko@26: AC_INIT([maemo-myth],[0.1]) renatofilho@21: renatofilho@21: dnl AC_CONFIG_SRCDIR([src/mmyth_main.c]) renatofilho@21: AC_CONFIG_HEADER(config.h) renatofilho@21: renatofilho@21: dnl when going to/from release please set the nano (fourth number) right ! renatofilho@21: dnl releases only do Wall, SVN and prerelease does Werror too melunko@26: AS_VERSION(maemo-myth, GMYTH, 0, 1, 0, 3, GMYTH_SVN="no", GMYTH_SVN="yes") renatofilho@21: renatofilho@21: GMYTH_MAJORMINOR=$GMYTH_MAJOR_VERSION.$GMYTH_MINOR_VERSION renatofilho@21: renatofilho@21: AC_SUBST(GMYTH_MAJORMINOR) renatofilho@21: renatofilho@21: dnl AM_MAINTAINER_MODE provides the option to enable maintainer mode renatofilho@21: AM_MAINTAINER_MODE renatofilho@21: dnl make aclocal work in maintainer mode renatofilho@21: AC_SUBST(ACLOCAL_AMFLAGS, "-I m4") renatofilho@21: renatofilho@21: # Checks for programs. renatofilho@21: # check for tools renatofilho@21: # Make sure CFLAGS is defined to stop AC_PROC_CC adding -g renatofilho@21: CFLAGS="$CFLAGS -Wall" renatofilho@21: AC_PROG_CC renatofilho@21: AC_PROG_LIBTOOL renatofilho@21: renatofilho@21: # Checks for libraries. renatofilho@21: renatofilho@21: # Checks for header files. renatofilho@21: AC_HEADER_STDC renatofilho@21: AC_CHECK_HEADERS([fcntl.h stdint.h stdlib.h string.h sys/ioctl.h sys/socket.h unistd.h]) renatofilho@21: renatofilho@21: # Checks for typedefs, structures, and compiler characteristics. renatofilho@21: AC_C_CONST renatofilho@21: AC_TYPE_PID_T renatofilho@21: AC_STRUCT_TM renatofilho@21: renatofilho@21: # Checks for library functions. renatofilho@21: AC_FUNC_FORK renatofilho@21: AC_PROG_GCC_TRADITIONAL renatofilho@21: AC_FUNC_MALLOC renatofilho@21: AC_FUNC_MKTIME renatofilho@21: AC_FUNC_VPRINTF renatofilho@21: AC_CHECK_FUNCS([memset socket stime strstr strtoul]) renatofilho@21: renatofilho@21: AM_INIT_AUTOMAKE($PACKAGE, $VERSION) renatofilho@21: renatofilho@21: # Checks required packages renatofilho@21: renatofilho@21: dnl Test if --disable-debug given renatofilho@21: AC_ARG_ENABLE(debug, renatofilho@21: [AC_HELP_STRING([--disable-debug], [disable debugging mode])], renatofilho@21: enable_debug="$enableval", renatofilho@21: enable_debug=yes) renatofilho@21: renatofilho@21: if test "x$enable_debug" = "xyes" ; then renatofilho@21: CFLAGS="$CFLAGS -g" renatofilho@21: else renatofilho@21: AC_DEFINE( NDEBUG, 1, [disable debug messages] ) renatofilho@21: CFLAGS="$CFLAGS -O2 -DG_DISABLE_CHECKS -DNDEBUG" renatofilho@21: fi renatofilho@21: renatofilho@21: AM_CONDITIONAL( NDEBUG, test "x$enable_debug" = "xyes" ) renatofilho@21: renatofilho@21: # Check for pkgconfig renatofilho@21: AC_CHECK_PROG(HAVE_PKGCONFIG, pkg-config, yes, no) renatofilho@21: # Give error and exit if we don't have pkgconfig renatofilho@21: if test "x$HAVE_PKGCONFIG" = "xno"; then renatofilho@21: AC_MSG_ERROR(you need to have pkgconfig installed !) renatofilho@21: fi renatofilho@21: renatofilho@21: # Check for Glib2.0 renatofilho@21: PKG_CHECK_MODULES(GLIB, glib-2.0, HAVE_GLIB=yes,HAVE_GLIB=no) renatofilho@21: renatofilho@21: # Give error and exit if we don't have glib renatofilho@21: if test "x$HAVE_GLIB" = "xno"; then renatofilho@21: AC_MSG_ERROR(you need glib-2.0 installed) renatofilho@21: fi renatofilho@21: renatofilho@21: # make GLIB_CFLAGS and GLIB_LIBS available renatofilho@21: AC_SUBST(GLIB_CFLAGS) renatofilho@21: AC_SUBST(GLIB_LIBS) renatofilho@21: renatofilho@21: # Check for GObject2.0 renatofilho@21: PKG_CHECK_MODULES(GOBJECT, renatofilho@21: gobject-2.0, renatofilho@21: HAVE_GOBJECT=yes, HAVE_GOBJECT=no) renatofilho@21: renatofilho@21: # Give error and exit if we don't have gobject renatofilho@21: if test "x$HAVE_GOBJECT" = "xno"; then renatofilho@21: AC_MSG_ERROR(you need gobject-2.0 installed) renatofilho@21: fi renatofilho@21: renatofilho@21: # make GOBJECT_CFLAGS and GOBJECT_LIBS available renatofilho@21: AC_SUBST(GOBJECT_CFLAGS) renatofilho@21: AC_SUBST(GOBJECT_LIBS) renatofilho@21: renatofilho@21: # Check for GTK+-2.0 renatofilho@21: PKG_CHECK_MODULES(GTK, gtk+-2.0, HAVE_GTK=yes,HAVE_GTK=no) renatofilho@21: renatofilho@21: # Give error and exit if we don't have gtk renatofilho@21: if test "x$HAVE_GTK" = "xyes"; then renatofilho@21: AC_DEFINE(WITH_GTK, 1, [build with GTK+ related stuff]) renatofilho@21: dnl AC_MSG_ERROR(you need gtk+-2.0 installed) renatofilho@21: else renatofilho@21: AC_MSG_RESULT(no) renatofilho@21: fi renatofilho@21: renatofilho@21: AM_CONDITIONAL(WITH_GTK, test "x$HAVE_GTK" = "xyes" ) renatofilho@21: renatofilho@21: # make GTK_CFLAGS and GTK_LIBS available renatofilho@21: AC_SUBST(GTK_CFLAGS) renatofilho@21: AC_SUBST(GTK_LIBS) renatofilho@21: renatofilho@21: dnl ========== Check for Hildon Libraries renatofilho@21: PKG_CHECK_MODULES(HILDON, rosfran@416: libosso hildon-lgpl libosso hildon-status-bar-lib libhildonmenu hildon-base-lib hildon-control-panel hildon-libs, renatofilho@21: HAVE_HILDON=yes, HAVE_HILDON=no) renatofilho@21: renatofilho@21: if test "x$HAVE_HILDON" = "xyes"; then rosfran@413: HILDON_CFLAGS="$HILDON_CFLAGS -DMAEMO_PLATFORM" renatofilho@21: AC_DEFINE(MAEMO_PLATFORM, 1, [build with hildon libs]) renatofilho@21: else renatofilho@21: AC_MSG_RESULT(no) renatofilho@21: fi renatofilho@21: renatofilho@21: AM_CONDITIONAL(MAEMO_PLATFORM, test "x$HAVE_HILDON" = "xyes") renatofilho@21: renatofilho@21: dnl make HILDON_CFLAGS and HILDON_LIBS available renatofilho@21: AC_SUBST(HILDON_CFLAGS) renatofilho@21: AC_SUBST(HILDON_LIBS) renatofilho@21: renatofilho@21: # Check for libxml-2.0 renatofilho@21: PKG_CHECK_MODULES(LIBXML, libxml-2.0, HAVE_LIBXML=yes,HAVE_LIBXML=no) renatofilho@21: renatofilho@21: # Give error and exit if we don't have libxml renatofilho@21: if test "x$HAVE_LIBXML" = "xno"; then renatofilho@21: AC_MSG_ERROR(you need libxml-2.0 installed) renatofilho@21: fi renatofilho@21: renatofilho@21: # make LIBXML_CFLAGS and LIBXML_LIBS available renatofilho@21: AC_SUBST(LIBXML_CFLAGS) renatofilho@21: AC_SUBST(LIBXML_LIBS) renatofilho@21: renatofilho@21: renatofilho@21: # check for gstreamer development files renatofilho@21: GST_REQUIRED=0.10 renatofilho@21: GST_MAJORMINOR=0.10 renatofilho@21: PKG_CHECK_MODULES(GST, \ renatofilho@21: gstreamer-$GST_MAJORMINOR >= $GST_REQUIRED, renatofilho@21: HAVE_GST=yes, HAVE_GST=no) renatofilho@21: renatofilho@21: # Give error and exit if we don't have gstreamer renatofilho@21: if test "x$HAVE_GST" = "xno"; then renatofilho@21: AC_MSG_ERROR(you need gstreamer development packages installed !) renatofilho@21: fi renatofilho@21: renatofilho@21: # make GST_CFLAGS and GST_LIBS available renatofilho@21: AC_SUBST(GST_CFLAGS) renatofilho@21: AC_SUBST(GST_LIBS) renatofilho@21: renatofilho@21: # check for gstreamer-base plugins (xoverlay interface) renatofilho@21: GSTBASE_REQUIRED=0.10 renatofilho@21: GSTBASE_MAJORMINOR=0.10 renatofilho@21: PKG_CHECK_MODULES(GSTBASE, \ renatofilho@21: gstreamer-base-$GSTBASE_MAJORMINOR >= $GSTBASE_REQUIRED, renatofilho@21: HAVE_GSTBASE=yes, HAVE_GSTBASE=no) renatofilho@21: renatofilho@21: # Give error and exit if we don't have gstreamer base libraries renatofilho@21: if test "x$HAVE_GSTBASE" = "xno"; then renatofilho@21: AC_MSG_ERROR(you need gstreamer base development packages installed !) renatofilho@21: fi renatofilho@21: renatofilho@21: # make GSTBASE_CFLAGS and GSTBASE_LIBS available renatofilho@21: AC_SUBST(GSTBASE_CFLAGS) renatofilho@21: AC_SUBST(GSTBASE_LIBS) renatofilho@21: renatofilho@21: # make GST_MAJORMINOR available in Makefile.am renatofilho@21: AC_SUBST(GST_MAJORMINOR) renatofilho@21: rosfran@50: rosfran@50: # check for gstreamer-base plugins (xoverlay interface) rosfran@50: GSTPLUGINSBASE_REQUIRED=0.10 rosfran@50: GSTPLUGINSBASE_MAJORMINOR=0.10 rosfran@50: PKG_CHECK_MODULES(GSTPLUGINSBASE, \ rosfran@50: gstreamer-plugins-base-$GSTPLUGINSBASE_MAJORMINOR >= $GSTPLUGINSBASE_REQUIRED, rosfran@50: HAVE_GSTPLUGINSBASE=yes, HAVE_GSTPLUGINSBASE=no) rosfran@50: rosfran@50: # Give error and exit if we don't have gstreamer base libraries rosfran@50: if test "x$HAVE_GSTPLUGINSBASE" = "xno"; then rosfran@50: AC_MSG_ERROR(you need gstreamer plugins base development packages installed !) rosfran@50: fi rosfran@50: rosfran@50: # make GSTPLUGINSBASE_CFLAGS and GSTPLUGINSBASE_LIBS available rosfran@50: AC_SUBST(GSTPLUGINSBASE_CFLAGS) rosfran@50: AC_SUBST(GSTPLUGINSBASE_LIBS) rosfran@50: rosfran@50: # check for gstreamer-interfaces (xoverlay interface) rosfran@50: AC_CHECK_FUNC( gst_x_overlay_get_type, rosfran@50: HAVE_GSTINTERFACES=yes, HAVE_GSTINTERFACES=no ) rosfran@50: rosfran@50: # Give error and exit if we don't have gstreamer base libraries rosfran@50: if test "x$HAVE_GSTINTERFACES" = "xno"; then rosfran@50: AC_MSG_NOTICE(you need gstreamer interfaces development packages installed !) rosfran@50: CFLAGS="$CFLAGS -lgstinterfaces-$GSTPLUGINSBASE_MAJORMINOR" rosfran@50: fi rosfran@50: rosfran@416: # Check for gmyth-0.1 renatofilho@21: renatofilho@21: PKG_CHECK_MODULES(LIBGMYTH, gmyth-0.1, HAVE_LIBGMYTH=yes,HAVE_LIBGMYTH=no) renatofilho@21: renatofilho@21: # Give error and exit if we don't have gmyth-0.1 renatofilho@21: if test "x$HAVE_LIBGMYTH" = "xno"; then renatofilho@21: AC_MSG_ERROR(you need gmyth-0.1 installed) renatofilho@21: fi renatofilho@21: renatofilho@21: # make LIBXML_CFLAGS and LIBXML_LIBS available renatofilho@21: AC_SUBST(LIBGMYTH_CFLAGS) renatofilho@21: AC_SUBST(LIBGMYTH_LIBS) renatofilho@21: renatofilho@21: renatofilho@21: AC_CONFIG_FILES([Makefile renatofilho@21: src/Makefile renatofilho@21: pixmaps/Makefile]) renatofilho@21: AC_OUTPUT