2013-12-22 04:41:30 +04:00
AC_PREREQ([2.63])
2020-06-19 21:09:42 +03:00
dnl
dnl SEE RELEASE.md FOR INSTRUCTIONS ON HOW TO DO A RELEASE.
dnl
2020-02-06 00:02:23 +03:00
m4_define([year_version], [2020])
2020-09-14 22:30:32 +03:00
m4_define([release_version], [5])
2017-07-21 20:32:58 +03:00
m4_define([package_version], [year_version.release_version])
AC_INIT([rpm-ostree], [package_version], [atomic-devel@projectatomic.io])
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])
2017-07-21 20:32:58 +03:00
dnl Versioning information
AC_SUBST([YEAR_VERSION], [year_version])
AC_SUBST([RELEASE_VERSION], [release_version])
AC_SUBST([PACKAGE_VERSION], [package_version])
2013-12-22 04:41:30 +04:00
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
2018-09-27 00:32:10 +03:00
dnl we don't today use C++ in rpm-ostree, only in libdnf,
dnl but this has the side effect of setting CXXFLAGS with -g
dnl if not set, which we definitely want; cmake doesn't do that.
AC_PROG_CXX
2013-12-22 04:41:30 +04:00
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-12-07 23:30:22 +03:00
dnl Keep this in sync with the version in ostree
2017-12-15 17:52:48 +03:00
AS_IF([echo "$CFLAGS" | grep -q -E -e '-Werror($| )'], [], [
2016-08-06 16:28:43 +03:00
CC_CHECK_FLAGS_APPEND([WARN_CFLAGS], [CFLAGS], [\
2017-12-15 17:52:48 +03:00
-pipe \
-Wall \
-Werror=empty-body \
-Werror=strict-prototypes \
-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=switch \
-Werror=overflow \
-Werror=int-conversion \
-Werror=parenthesis \
-Werror=undef \
-Werror=incompatible-pointer-types \
-Werror=misleading-indentation \
-Werror=missing-include-dirs -Werror=aggregate-return \
-Wstrict-aliasing=2 \
-Werror=unused-result \
])])
2013-12-22 04:41:30 +04:00
AC_SUBST(WARN_CFLAGS)
2017-01-17 21:29:48 +03:00
AC_MSG_CHECKING([for -fsanitize=address in CFLAGS])
if echo $CFLAGS | grep -q -e -fsanitize=address; then
AC_MSG_RESULT([yes])
using_asan=yes
else
AC_MSG_RESULT([no])
fi
AM_CONDITIONAL(BUILDOPT_ASAN, [test x$using_asan = xyes])
2013-12-22 04:41:30 +04:00
# 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-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])
2017-12-15 17:50:43 +03:00
PKG_CHECK_MODULES(PKGDEP_RPMOSTREE, [gio-unix-2.0 >= 2.50.0 json-glib-1.0
2020-03-13 17:07:05 +03:00
ostree-1 >= 2020.1
2016-06-17 22:14:24 +03:00
libsystemd
2017-06-09 13:52:01 +03:00
polkit-gobject-1
2017-12-09 01:41:29 +03:00
rpm librepo libsolv
2016-01-12 19:22:16 +03:00
libarchive])
2018-08-18 00:34:02 +03:00
2018-08-27 23:00:46 +03:00
dnl -ldl: https://github.com/ostreedev/ostree/commit/1f832597fc83fda6cb8daf48c4495a9e1590774c
dnl -ldl: https://github.com/rust-lang/rust/issues/47714
dnl -lm: needed for rand crate in debug mode
dnl See also rpmostree_core_linkage_for_rust()
PKGDEP_RPMOSTREE_LIBS="$PKGDEP_RPMOSTREE_LIBS -Wl,--push-state,--no-as-needed,-ldl,-lm,--pop-state"
2018-08-18 00:34:02 +03:00
# We just keep rust-specific deps separate for better tracking
# The `libcurl` one is redundant since we already require it for libostree. `openssl`
# is required by libcurl anyway, but we need to link to it directly too because
# curl-rust uses it.
PKG_CHECK_MODULES(PKGDEP_RPMOSTREE_RS, [libcurl openssl])
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
2019-10-15 18:16:06 +03:00
dnl RHEL8.1 has old libarchive
AS_IF([pkg-config --atleast-version=3.3.3 libarchive],
[AC_DEFINE([HAVE_LIBARCHIVE_ZSTD], 1, [Define if we have libarchive with zstd])])
2017-07-07 17:45:10 +03:00
dnl This is the current version in Fedora 25.
2019-03-21 05:54:52 +03:00
AS_IF([pkg-config --atleast-version=4.14.2 rpm], [], [AC_MSG_ERROR([librpm 4.14.2 required])])
2017-07-07 17:45:10 +03:00
2019-10-17 00:02:45 +03:00
dnl We don't *actually* use this ourself, but librepo does, and libdnf gets confused
dnl if librepo doesn't support it.
2020-05-14 03:38:48 +03:00
have_zchunk=no
2019-10-17 00:02:45 +03:00
AS_IF([pkg-config --exists zck],
2020-05-14 03:38:48 +03:00
[have_zchunk=yes; AC_DEFINE([HAVE_ZCHUNK], 1, [Define if we have zchunk])])
2019-10-17 00:02:45 +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
2017-12-15 17:44:33 +03:00
LIBGLNX_CONFIGURE
2014-12-18 02:11:47 +03:00
2016-06-17 22:14:24 +03:00
AC_CHECK_TOOL(GPERF, gperf)
AS_IF([test -z "$GPERF"],
AC_MSG_ERROR([*** gperf not found])
)
2017-02-17 20:29:10 +03:00
dnl stolen from https://github.com/systemd/systemd/commit/c9f7b4d
GPERF_TEST="$(echo foo,bar | ${GPERF} -L ANSI-C)"
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([
#include <string.h>
const char * in_word_set(const char *, size_t);
$GPERF_TEST]
)],
[GPERF_LEN_TYPE=size_t],
[AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([
#include <string.h>
const char * in_word_set(const char *, unsigned);
$GPERF_TEST]
)],
[GPERF_LEN_TYPE=unsigned],
[AC_MSG_ERROR([** unable to determine gperf len type])]
)]
)
AC_DEFINE_UNQUOTED([GPERF_LEN_TYPE], [$GPERF_LEN_TYPE], [gperf len type])
2016-06-17 22:14:24 +03:00
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-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])
2019-03-21 05:56:47 +03:00
RPM_OSTREE_FEATURES="$RPM_OSTREE_FEATURES compose"
2014-09-17 05:45:30 +04:00
2019-03-06 20:31:36 +03:00
dnl PKG_CHECK_VAR added to pkg-config 0.28 (though it's already in the new pkgconf; this
dnl backport is more for el7)
m4_define_default(
[PKG_CHECK_VAR],
[AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])
AS_IF([test -z "$$1"], [$1=`$PKG_CONFIG --variable="$3" "$2"`])
AS_IF([test -n "$$1"], [$4], [$5])])
PKG_CHECK_VAR(BASH_COMPLETIONSDIR, [bash-completion], [completionsdir],,
2019-03-14 17:47:20 +03:00
BASH_COMPLETIONSDIR="${datadir}/bash-completion/completions")
2019-03-06 20:31:36 +03:00
AC_SUBST(BASH_COMPLETIONSDIR)
2018-08-20 17:40:57 +03:00
AC_PATH_PROG([cargo], [cargo])
AS_IF([test -z "$cargo"], [AC_MSG_ERROR([cargo is required for --enable-rust])])
AC_PATH_PROG([rustc], [rustc])
AS_IF([test -z "$rustc"], [AC_MSG_ERROR([rustc is required for --enable-rust])])
2018-05-31 23:31:22 +03:00
2018-09-22 01:02:18 +03:00
dnl https://github.com/projectatomic/rpm-ostree/pull/1573
dnl We support 3 modes for bindgen:
dnl - External /usr/bin/cbindgen (Fedora + CI)
dnl - Downloading it from crates.io (CentOS + CI builds)
dnl - Not running it at all, and using a pre-built rpmostree-rust.h (Koji)
AS_IF([test -d "${srcdir}"/rust/vendor],
[cbindgen=dist],
[AC_PATH_PROG([cbindgen], [cbindgen])])
AM_CONDITIONAL(HAVE_PREBUILT_CBINDGEN, [test "${cbindgen}" = "dist"])
AM_CONDITIONAL(HAVE_EXTERNAL_CBINDGEN, [test -n "${cbindgen}" && test "${cbindgen}" != dist])
2018-08-22 18:32:54 +03:00
AC_MSG_CHECKING(whether to build in debug mode)
debug_release=release
if $(echo $CFLAGS |grep -q -E "(-O0|-Og)"); then
debug_release=debug
fi
AC_MSG_RESULT($debug_release)
2018-08-20 17:40:57 +03:00
dnl These bits based on gnome:librsvg/configure.ac
2018-11-05 18:50:24 +03:00
dnl By default, we build in release mode (but without LTO!)
2018-08-20 17:40:57 +03:00
AC_ARG_ENABLE(rust-debug,
AC_HELP_STRING([--enable-rust-debug],
[Build Rust code with debugging information [default=no]]),
[rust_debug_release=$enableval],
2018-08-22 18:32:54 +03:00
[rust_debug_release=$debug_release])
dnl Canonicalize yes/no to debug/release
AS_IF([test x$rust_debug_release = xno ], [rust_debug_release=release])
AS_IF([test x$rust_debug_release = xyes ], [rust_debug_release=debug])
2018-05-31 23:31:22 +03:00
2018-08-22 18:32:54 +03:00
RUST_TARGET_SUBDIR=${rust_debug_release}
2018-08-20 17:40:57 +03:00
AC_SUBST([RUST_TARGET_SUBDIR])
2018-05-31 23:31:22 +03:00
AM_CONDITIONAL(RUST_DEBUG, [test "x$rust_debug_release" = "xdebug"])
2018-08-20 17:40:57 +03:00
dnl Unconditional now.
RPM_OSTREE_FEATURES="$RPM_OSTREE_FEATURES rust"
2018-05-31 23:31:22 +03:00
2018-11-05 18:50:24 +03:00
dnl Only use this for package builds, as it will hackily edit Cargo.toml right now
AC_ARG_ENABLE(lto,
AC_HELP_STRING([--enable-lto],
[Build code with Link Time Optimization [default=no]]))
dnl https://github.com/rust-lang/cargo/issues/4349
dnl https://bugzilla.mozilla.org/show_bug.cgi?id=1386371
if test "${enable_lto}" = yes; then
if ! grep -q '^lto.*=true' rust/Cargo.toml 2>/dev/null; then
echo '# Inserted by configure --enable-lto' >> rust/Cargo.toml
echo "lto = true" >> rust/Cargo.toml
fi
fi
2020-10-22 20:33:45 +03:00
AC_ARG_ENABLE(rojig,
AC_HELP_STRING([--enable-rojig],
[Support for shipping ostree commits via RPMs [default=no]]))
AM_CONDITIONAL([BUILDOPT_ROJIG], test x$enable_rojig = xyes)
AM_COND_IF([BUILDOPT_ROJIG], [
RPM_OSTREE_FEATURES="$RPM_OSTREE_FEATURES rojig"
AC_DEFINE([BUILDOPT_ROJIG], 1, [Define if rojig is enabled])
])
2018-08-20 17:40:57 +03:00
dnl And propagate the release/debug type to cmake
cmake_args=-DCMAKE_BUILD_TYPE=RelWithDebugInfo
2018-08-22 18:32:54 +03:00
if test ${debug_release} = debug; then
2016-10-21 21:39:06 +03:00
cmake_args="-DCMAKE_BUILD_TYPE=Debug"
2018-07-16 22:05:37 +03:00
fi
2020-05-14 03:38:48 +03:00
if test x${have_zchunk} = xno; then
cmake_args="${cmake_args} -DWITH_ZCHUNK:BOOL=0"
fi
2018-08-20 17:40:57 +03:00
export cmake_args
2018-07-16 22:05:37 +03:00
2016-06-29 04:33:02 +03:00
dnl I picked /usr/libexec/rpm-ostree just because we need an
dnl arbitrary path - we don't actually install there.
2019-03-18 19:11:14 +03:00
dnl Use `WITH_GIR=0`; it's our private libdnf bundle and we don't need the bindings.
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 &&
2018-09-27 00:32:10 +03:00
export CXXFLAGS &&
2016-06-29 04:33:02 +03:00
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 \
2017-11-28 00:54:04 +03:00
-DWITH_SWDB:BOOL=0 \
2018-07-31 19:12:19 +03:00
-DWITH_BINDINGS:BOOL=0 \
2018-07-17 19:22:26 +03:00
-DWITH_HTML:BOOL=0 \
-DWITH_MAN:BOOL=0 \
2019-03-18 19:11:14 +03:00
-DWITH_GIR:BOOL=0 \
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
2017-07-21 20:32:58 +03:00
src/lib/rpmostree-version.h
2013-12-22 04:41:30 +04:00
])
AC_OUTPUT
echo "
$PACKAGE $VERSION
2014-03-29 06:04:52 +04:00
2017-07-07 17:45:10 +03:00
introspection: $found_introspection
2020-10-22 20:33:45 +03:00
rojig: ${enable_rojig:-no}
2017-07-07 17:45:10 +03:00
bubblewrap: $with_bubblewrap
gtk-doc: $enable_gtk_doc
2018-11-05 18:50:24 +03:00
rust: $rust_debug_release (lto: ${enable_lto:-no})
2018-09-22 01:02:18 +03:00
cbindgen: ${cbindgen:-internal}
2013-12-22 04:41:30 +04:00
"