mirror of
https://github.com/flatpak/flatpak.git
synced 2026-03-28 20:02:36 -04:00
See https://mail.gnome.org/archives/ostree-list/2016-October/msg00003.html Basically https://github.com/wrpseudo/pseudo doesn't implement newer APIs like renameat2() and O_TMPFILE, so on the host side (as potentially opposed to the target system) we want to be able to disable them.
32 lines
1002 B
Plaintext
32 lines
1002 B
Plaintext
AC_DEFUN([LIBGLNX_CONFIGURE],
|
|
[
|
|
AC_CHECK_DECLS([
|
|
renameat2,
|
|
],
|
|
[], [], [[
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
#include <sys/mount.h>
|
|
#include <fcntl.h>
|
|
#include <sched.h>
|
|
#include <linux/loop.h>
|
|
#include <linux/random.h>
|
|
]])
|
|
|
|
AC_ARG_ENABLE(otmpfile,
|
|
[AS_HELP_STRING([--disable-otmpfile],
|
|
[Disable use of O_TMPFILE [default=no]])],,
|
|
[enable_otmpfile=yes])
|
|
AS_IF([test $enable_otmpfile = yes], [], [
|
|
AC_DEFINE([DISABLE_OTMPFILE], 1, [Define if we should avoid using O_TMPFILE])])
|
|
|
|
AC_ARG_ENABLE(wrpseudo-compat,
|
|
[AS_HELP_STRING([--enable-wrpseudo-compat],
|
|
[Disable use syscall() and filesystem calls to for compatibility with wrpseudo [default=no]])],,
|
|
[enable_wrpseudo_compat=no])
|
|
AS_IF([test $enable_wrpseudo_compat = no], [], [
|
|
AC_DEFINE([ENABLE_WRPSEUDO_COMPAT], 1, [Define if we should be compatible with wrpseudo])])
|
|
|
|
dnl end LIBGLNX_CONFIGURE
|
|
])
|