2011-10-10 01:03:08 +04:00
AC_PREREQ([2.63])
2013-07-08 04:54:03 +04:00
AC_INIT([ostree], [2013.3], [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])
2013-07-10 21:24:15 +04:00
AC_USE_SYSTEM_EXTENSIONS
2013-02-24 15:35:23 +04:00
AC_SYS_LARGEFILE
2011-10-10 01:03:08 +04:00
AC_PROG_CC
AM_PROG_CC_C_O
2011-10-14 01:11:01 +04:00
changequote(,)dnl
if test "x$GCC" = "xyes"; then
2012-06-28 04:26:08 +04:00
WARN_CFLAGS="-Wall -Wstrict-prototypes -Werror=missing-prototypes \
-Werror=implicit-function-declaration \
-Werror=pointer-arith -Werror=init-self -Werror=format=2 \
-Werror=format-security \
-Werror=missing-include-dirs -Werror=aggregate-return \
-Werror=declaration-after-statement"
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-11-30 03:25:07 +04:00
LT_PREREQ([2.2.4])
LT_INIT([disable-static])
2011-10-10 01:03:08 +04:00
2013-05-02 03:15:06 +04:00
OSTREE_FEATURES=""
AC_SUBST([OSTREE_FEATURES])
2013-05-01 23:26:21 +04:00
AC_ARG_ENABLE(installed_tests,
AS_HELP_STRING([--enable-installed-tests],
[Install test programs (default: no)]),,
[enable_installed_tests=no])
AM_CONDITIONAL(BUILDOPT_INSTALL_TESTS, test x$enable_installed_tests = xyes)
2012-02-20 22:59:52 +04:00
AC_CHECK_HEADER([attr/xattr.h],,[AC_MSG_ERROR([You must have attr/xattr.h from libattr])])
2011-10-10 01:03:08 +04:00
PKG_PROG_PKG_CONFIG
2012-06-15 00:22:23 +04:00
AC_ARG_ENABLE(embedded-dependencies,
AS_HELP_STRING([--enable-embedded-dependencies], [Use embedded GLib and libsoup copies]),,
enable_embedded_dependencies=no)
AM_CONDITIONAL(BUILD_EMBEDDED_DEPENDENCIES, test x$enable_embedded_dependencies = xyes)
2012-08-14 21:11:45 +04:00
AS_IF([test x$enable_embedded_dependencies = xyes], [
2012-06-15 00:22:23 +04:00
echo "NOTICE: Embedded dependencies (GLib and libsoup) enabled"
with_soup=yes
2012-08-14 21:11:45 +04:00
], [
2013-03-13 02:45:27 +04:00
GIO_DEPENDENCY="gio-unix-2.0 >= 2.34.0"
2012-06-08 01:21:55 +04:00
PKG_CHECK_MODULES(OT_DEP_GIO_UNIX, $GIO_DEPENDENCY)
2012-06-15 00:22:23 +04:00
SOUP_DEPENDENCY="libsoup-2.4 >= 2.39.1"
2012-08-14 21:11:45 +04:00
AC_ARG_WITH(soup,
AS_HELP_STRING([--with-soup], [Use libsoup @<:@default=yes@:>@]),
[], [with_soup=check])
AS_IF([test x$with_soup != xno ], [
2012-06-15 00:22:23 +04:00
AC_MSG_CHECKING([for $SOUP_DEPENDENCY])
2012-08-14 21:11:45 +04:00
PKG_CHECK_EXISTS($SOUP_DEPENDENCY, have_soup=yes, have_soup=no)
AC_MSG_RESULT([$have_soup])
AS_IF([ test x$have_soup = xno && test x$with_soup != xcheck], [
AC_MSG_ERROR([libsoup is enabled but could not be found])
])
AS_IF([test x$have_soup = xyes], [
2012-06-15 00:22:23 +04:00
PKG_CHECK_MODULES(OT_DEP_SOUP, $SOUP_DEPENDENCY)
2013-05-02 03:15:06 +04:00
AC_DEFINE(HAVE_LIBSOUP, 1, [Define if we have libsoup.pc])
2012-06-15 00:22:23 +04:00
with_soup=yes
2012-08-14 21:11:45 +04:00
], [
2012-06-15 00:22:23 +04:00
with_soup=no
2012-08-14 21:11:45 +04:00
])
2012-08-26 20:46:14 +04:00
], [ with_soup=no ])
2012-08-14 21:11:45 +04:00
])
2013-05-02 03:15:06 +04:00
if test x$with_soup != xno; then OSTREE_FEATURES="$OSTREE_FEATURES +libsoup"; fi
2012-08-14 21:11:45 +04:00
AM_CONDITIONAL(USE_LIBSOUP, test x$with_soup != xno)
2012-06-15 00:22:23 +04:00
2011-12-04 21:14:08 +04:00
LIBARCHIVE_DEPENDENCY="libarchive >= 2.8.0"
2011-11-30 18:21:14 +04:00
2012-01-14 01:30:39 +04:00
AC_ARG_ENABLE(documentation,
AC_HELP_STRING([--enable-documentation],
[build documentation]),,
enable_documentation=yes)
if test x$enable_documentation = xyes; then
AC_PATH_PROG([XSLTPROC], [xsltproc])
if test x$XSLTPROC = x; then
AC_MSG_ERROR([xsltproc is required to build documentation])
fi
fi
AM_CONDITIONAL(BUILD_DOCUMENTATION, test x$enable_documentation = xyes)
2011-12-04 21:14:08 +04:00
AC_ARG_WITH(libarchive,
AS_HELP_STRING([--without-libarchive], [Do not use libarchive]),
:, with_libarchive=maybe)
2012-08-28 17:36:07 +04:00
AS_IF([ test x$with_libarchive != xno ], [
2012-02-25 00:40:52 +04:00
AC_MSG_CHECKING([for $LIBARCHIVE_DEPENDENCY])
2011-12-04 21:14:08 +04:00
PKG_CHECK_EXISTS($LIBARCHIVE_DEPENDENCY, have_libarchive=yes, have_libarchive=no)
2012-02-25 00:40:52 +04:00
AC_MSG_RESULT([$have_libarchive])
2012-08-14 21:11:45 +04:00
AS_IF([ test x$have_libarchive = xno && test x$with_libarchive != xmaybe ], [
2011-12-04 21:14:08 +04:00
AC_MSG_ERROR([libarchive is enabled but could not be found])
2012-08-14 21:11:45 +04:00
])
AS_IF([ test x$have_libarchive = xyes], [
2011-12-04 21:14:08 +04:00
AC_DEFINE(HAVE_LIBARCHIVE, 1, [Define if we have libarchive.pc])
PKG_CHECK_MODULES(OT_DEP_LIBARCHIVE, $LIBARCHIVE_DEPENDENCY)
2012-02-25 00:40:52 +04:00
with_libarchive=yes
2012-08-14 21:11:45 +04:00
], [
2011-12-04 21:14:08 +04:00
with_libarchive=no
2012-08-14 21:11:45 +04:00
])
2012-08-26 20:46:14 +04:00
], [ with_libarchive=no ])
2013-05-02 03:15:06 +04:00
if test x$with_libarchive != xno; then OSTREE_FEATURES="$OSTREE_FEATURES +libarchive"; fi
2011-12-04 21:14:08 +04:00
AM_CONDITIONAL(USE_LIBARCHIVE, test $with_libarchive != no)
2013-06-03 22:12:40 +04:00
AC_ARG_WITH(dracut,
AS_HELP_STRING([--with-dracut],
[Install dracut module (default: no)]),,
[with_dracut=no])
AM_CONDITIONAL(BUILDOPT_DRACUT, test x$with_dracut = xyes)
2011-10-10 01:03:08 +04:00
AC_CONFIG_FILES([
Makefile
2012-06-08 01:21:55 +04:00
embedded-dependencies/Makefile
2011-10-10 01:03:08 +04:00
])
AC_OUTPUT
2012-02-25 00:40:52 +04:00
echo "
OSTree $VERSION
===============
2012-06-15 00:22:23 +04:00
embedded dependencies: $enable_embedded_dependencies
libsoup (retrieve remote HTTP repositories): $with_soup
2012-02-25 00:40:52 +04:00
libarchive (parse tar files directly): $with_libarchive
2012-08-26 20:46:14 +04:00
documentation: $enable_documentation
2013-06-03 22:12:40 +04:00
dracut: $with_dracut
2012-02-25 00:40:52 +04:00
"