2013-12-22 04:41:30 +04:00
AC_PREREQ([2.63])
2016-10-21 22:51:15 +03:00
AC_INIT([rpm-ostree], [2016.11], [walters@verbum.org])
2013-12-22 04:41:30 +04:00
AC_CONFIG_HEADER([config.h])
2014-12-18 02:11:47 +03:00
AC_CONFIG_MACRO_DIR([buildutil])
2013-12-22 04:41:30 +04:00
AC_CONFIG_AUX_DIR([build-aux])
2015-09-11 16:33:46 +03:00
AM_INIT_AUTOMAKE([1.11 -Wno-portability foreign no-define tar-ustar no-dist-gzip dist-xz subdir-objects])
2013-12-22 04:41:30 +04:00
AM_MAINTAINER_MODE([enable])
AM_SILENT_RULES([yes])
AC_USE_SYSTEM_EXTENSIONS
AC_SYS_LARGEFILE
AC_PROG_CC
AM_PROG_CC_C_O
2015-04-28 04:22:58 +03:00
# dbus system dir
AC_MSG_CHECKING(for dbus system services directory)
if test "$enable_prefix_only" = "yes"; then
dbusservicedir='${datadir}/dbus-1/system-services'
else
dbusservicedir='${datadir}/dbus-1/system-services'
if test "$dbusservicedir" = ""; then
AC_MSG_ERROR(Couldn't find dbus services directory. Try installing dbus-devel)
fi
fi
AC_SUBST([dbusservicedir], [$dbusservicedir])
AC_MSG_RESULT(dbusservicedir)
2016-08-06 16:28:43 +03:00
CC_CHECK_FLAGS_APPEND([WARN_CFLAGS], [CFLAGS], [\
-pipe \
-Wall \
-Werror=missing-prototypes \
-Werror=implicit-function-declaration \
"-Werror=format=2 -Werror=format-security -Werror=format-nonliteral" \
-Werror=pointer-arith -Werror=init-self \
-Werror=missing-declarations \
-Werror=return-type \
-Werror=overflow \
-Werror=int-conversion \
-Werror=missing-include-dirs -Werror=aggregate-return \
-Werror=declaration-after-statement \
])
2013-12-22 04:41:30 +04:00
AC_SUBST(WARN_CFLAGS)
# Initialize libtool
LT_PREREQ([2.2.4])
LT_INIT([disable-static])
2014-11-26 14:02:19 +03:00
RPM_OSTREE_FEATURES=""
AC_SUBST([RPM_OSTREE_FEATURES])
2013-12-22 04:41:30 +04:00
PKG_PROG_PKG_CONFIG
2014-11-10 04:28:10 +03:00
save_LIBS="$LIBS"
LIBS=
AC_SEARCH_LIBS([cap_init], [cap], [], [AC_MSG_ERROR([*** POSIX caps library not found])])
CAP_LIBS="$LIBS"
AC_SUBST(CAP_LIBS)
LIBS="$save_LIBS"
2015-02-19 23:53:58 +03:00
AC_SEARCH_LIBS([rpmsqSetInterruptSafety], [rpmio],
AC_DEFINE([BUILDOPT_HAVE_RPMSQ_SET_INTERRUPT_SAFETY], 1, [Set to 1 if we have interrupt safety API]),
AC_DEFINE([BUILDOPT_HAVE_RPMSQ_SET_INTERRUPT_SAFETY], 0, [Set to 1 if we have interrupt safety API])
)
2015-08-14 19:22:45 +03:00
# Remember to update AM_CPPFLAGS in Makefile.am when bumping GIO req.
2013-12-22 04:41:30 +04:00
PKG_CHECK_MODULES(PKGDEP_GIO_UNIX, [gio-unix-2.0])
2015-08-14 19:22:45 +03:00
PKG_CHECK_MODULES(PKGDEP_RPMOSTREE, [gio-unix-2.0 >= 2.40.0 json-glib-1.0
2016-11-06 02:48:32 +03:00
ostree-1 >= 2016.7
2016-06-17 22:14:24 +03:00
libsystemd
2016-06-29 04:33:02 +03:00
rpm librepo
2016-01-12 19:22:16 +03:00
libarchive])
2016-08-03 21:30:17 +03:00
dnl bundled libdnf
PKGDEP_RPMOSTREE_CFLAGS="-I $(pwd)/libdnf -I $(pwd)/libdnf-build $PKGDEP_RPMOSTREE_CFLAGS"
PKGDEP_RPMOSTREE_LIBS="-L$(pwd)/libdnf-build/libdnf -ldnf $PKGDEP_RPMOSTREE_LIBS"
2015-05-26 17:43:33 +03:00
2013-12-22 04:41:30 +04:00
AC_PATH_PROG([XSLTPROC], [xsltproc])
2014-12-18 02:11:47 +03:00
GLIB_TESTS
2016-06-17 22:14:24 +03:00
AC_CHECK_TOOL(GPERF, gperf)
AS_IF([test -z "$GPERF"],
AC_MSG_ERROR([*** gperf not found])
)
2015-03-20 03:45:30 +03:00
m4_ifdef([GOBJECT_INTROSPECTION_CHECK], [
GOBJECT_INTROSPECTION_CHECK([1.34.0])
])
AM_CONDITIONAL(BUILDOPT_INTROSPECTION, test "x$found_introspection" = xyes)
2014-01-03 22:15:12 +04:00
2016-03-15 21:03:32 +03:00
m4_ifdef([GTK_DOC_CHECK], [
2015-04-09 00:20:50 +03:00
GTK_DOC_CHECK([1.15], [--flavour no-tmpl])
2016-03-15 21:03:32 +03:00
],[
AM_CONDITIONAL([ENABLE_GTK_DOC],[false])
])
2015-04-09 00:20:50 +03:00
2014-07-16 17:02:45 +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)
2016-10-19 21:24:40 +03:00
AC_ARG_ENABLE(new-name,
AS_HELP_STRING([--enable-new-name],
[Install additionally as nts (default: no)]),,
[enable_new_name=no])
AM_CONDITIONAL(BUILDOPT_NEW_NAME, test x$enable_new_name = xyes)
2016-07-05 19:20:09 +03:00
AC_ARG_WITH(bubblewrap,
AS_HELP_STRING([--with-bubblewrap],
[Path to bubblewrap binary (default: /usr/bin/bwrap)]),,
[with_bubblewrap=/usr/bin/bwrap])
AC_DEFINE_UNQUOTED(WITH_BUBBLEWRAP_PATH, ["$with_bubblewrap"], [Define to bubblewrap path])
2014-09-17 05:45:30 +04:00
dnl Some distributions may want to support the client tooling, but not
dnl the server side.
AC_ARG_ENABLE(compose-tooling,
AS_HELP_STRING([--enable-compose-tooling],
[Build compose tooling]),,
[enable_compose_tooling=yes])
AM_CONDITIONAL(BUILDOPT_COMPOSE_TOOLING, [test x$enable_compose_tooling = xyes])
AS_IF([test x$enable_compose_tooling = xyes], [
AC_DEFINE(HAVE_COMPOSE_TOOLING, 1, [Define if we are building compose tooling])
])
2014-11-26 14:02:19 +03:00
if test x$enable_compose_tooling != xno; then RPM_OSTREE_FEATURES="$RPM_OSTREE_FEATURES +compose"; fi
2014-09-17 05:45:30 +04:00
2016-06-29 04:33:02 +03:00
dnl Try to automatically determine cmake type from CFLAGS
if $(echo $CFLAGS |grep -q -e "-O0"); then
2016-10-21 21:39:06 +03:00
cmake_args="-DCMAKE_BUILD_TYPE=Debug"
2016-06-29 04:33:02 +03:00
export cmake_args
else
cmake_args=-DCMAKE_BUILD_TYPE=RelWithDebugInfo
export cmake_args
fi
dnl I picked /usr/libexec/rpm-ostree just because we need an
dnl arbitrary path - we don't actually install there.
2016-08-03 21:30:17 +03:00
(set -euo pipefail; mkdir -p libdnf-build && cd libdnf-build &&
2016-06-29 04:33:02 +03:00
set -x &&
cmake \
-DCMAKE_INSTALL_PREFIX:PATH=/usr/libexec/rpm-ostree \
-DINCLUDE_INSTALL_DIR:PATH=/usr/libexec/rpm-ostree/include \
-DLIB_INSTALL_DIR:PATH=/usr/libexec/rpm-ostree \
-DSYSCONF_INSTALL_DIR:PATH=/usr/libexec/rpm-ostree/etc \
-DSHARE_INSTALL_PREFIX:PATH=/usr/libexec/rpm-ostree/share \
-DBUILD_SHARED_LIBS:BOOL=ON \
2016-08-03 21:30:17 +03:00
${cmake_args} ../libdnf) || exit 1
2016-06-29 04:33:02 +03:00
2013-12-22 04:41:30 +04:00
AC_CONFIG_FILES([
Makefile
2016-03-09 19:20:06 +03:00
api-doc/Makefile
2015-03-20 03:45:30 +03:00
src/lib/rpm-ostree-1.pc
2013-12-22 04:41:30 +04:00
])
AC_OUTPUT
echo "
$PACKAGE $VERSION
2014-03-29 06:04:52 +04:00
2016-10-19 21:24:40 +03:00
nts name: $enable_new_name
2014-09-17 05:45:30 +04:00
compose tooling: $enable_compose_tooling
2016-07-05 19:20:09 +03:00
bubblewrap: $with_bubblewrap
2015-04-09 00:20:50 +03:00
gtk-doc: $enable_gtk_doc
2013-12-22 04:41:30 +04:00
"