diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 21:11:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 21:11:59 +0000 |
commit | 3cd01b932e1c85394272ae64fae67ebeda92fb00 (patch) | |
tree | c5a3115d710afc1879ddea5349362a2bc651733c /m4/pdns_check_lua_hpp.m4 | |
parent | Initial commit. (diff) | |
download | dnsdist-9f47c945fba1880403348371c2f10ae87ca2e660.tar.xz dnsdist-9f47c945fba1880403348371c2f10ae87ca2e660.zip |
Adding upstream version 1.8.3.upstream/1.8.3
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'm4/pdns_check_lua_hpp.m4')
-rw-r--r-- | m4/pdns_check_lua_hpp.m4 | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/m4/pdns_check_lua_hpp.m4 b/m4/pdns_check_lua_hpp.m4 new file mode 100644 index 0000000..7cc8f5e --- /dev/null +++ b/m4/pdns_check_lua_hpp.m4 @@ -0,0 +1,10 @@ +AC_DEFUN([PDNS_CHECK_LUA_HPP],[ + AC_REQUIRE([PDNS_WITH_LUA]) + AS_IF([test "x$LUAPC" != "x" ], [ + OLD_CPPFLAGS="$CPPFLAGS" + CPPFLAGS="$CPPFLAGS $LUA_CFLAGS" + AC_CHECK_HEADER([lua.hpp], [ have_lua_hpp=y ]) + CPPFLAGS="$OLD_CPPFLAGS" + ]) + AM_CONDITIONAL([HAVE_LUA_HPP], [ test x"$have_lua_hpp" = "xy" ]) +]) |