2011-10-10 01:03:08 +04:00
AC_PREREQ([2.63])
2011-10-18 22:44:48 +04:00
AC_INIT([ostree], [0], [walters@verbum.org])
2011-10-10 01:03:08 +04:00
AC_CONFIG_HEADER([config.h])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([1.11 -Wno-portability foreign no-define tar-ustar no-dist-gzip dist-xz])
AM_MAINTAINER_MODE([enable])
AM_SILENT_RULES([yes])
AC_PROG_CC
AM_PROG_CC_C_O
2011-10-14 01:11:01 +04:00
changequote(,)dnl
if test "x$GCC" = "xyes"; then
2011-11-11 15:53:44 +04:00
WARN_CFLAGS="-Wall -Werror=missing-prototypes"
2011-10-14 01:11:01 +04:00
fi
changequote([,])dnl
2011-11-11 15:53:44 +04:00
AC_SUBST(WARN_CFLAGS)
2011-10-14 01:11:01 +04:00
2011-10-10 01:03:08 +04:00
# Initialize libtool
2011-10-26 21:52:42 +04:00
AC_PROG_LIBTOOL
2011-10-10 01:03:08 +04:00
LT_PREREQ([2.2])
LT_INIT
PKG_PROG_PKG_CONFIG
2011-11-15 00:08:09 +04:00
GIO_DEPENDENCY="gio-unix-2.0 >= 2.28"
2011-10-26 22:10:20 +04:00
PKG_CHECK_MODULES(GIO_UNIX, [gio-unix-2.0 >= 2.28])
2011-11-15 00:08:09 +04:00
AC_ARG_WITH(soup-gnome,
AS_HELP_STRING([--without-soup-gnome], [Do not use libsoup-gnome (implies no pull support)]),
:, with_soup_gnome=maybe)
if test x$with_soup_gnome != xno; then
PKG_CHECK_MODULES(OT_COREBIN_DEP, [libsoup-gnome-2.4 >= 2.34.0 $GIO_DEPENDENCY], have_soup_gnome=yes, have_soup_gnome=no)
if test x$have_soup_gnome = xno && test x$with_soup_gnome != xmaybe; then
AC_MSG_ERROR([libsoup-gnome is enabled but could not be found])
fi
if test x$have_soup_gnome = xyes; then
AC_DEFINE([HAVE_LIBSOUP_GNOME], [1], [Define if we have libsoup-gnome])
else
PKG_CHECK_MODULES(OT_COREBIN_DEP, [$GIO_DEPENDENCY])
fi
else
PKG_CHECK_MODULES(OT_COREBIN_DEP, [$GIO_DEPENDENCY])
fi
AM_CONDITIONAL(USE_LIBSOUP_GNOME, test $with_soup_gnome != no)
2011-10-10 01:03:08 +04:00
2011-10-11 02:46:57 +04:00
AM_PATH_PYTHON
2011-10-10 01:03:08 +04:00
AC_CONFIG_FILES([
Makefile
])
AC_OUTPUT