diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-13 04:30:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-13 04:30:18 +0000 |
commit | 699034d85536ab2090282d2fa7bd8cc4825ce693 (patch) | |
tree | e0d85a190b3d434f7270a4e900441c636e46b387 /configure.ac | |
parent | Adding upstream version 32+20240327. (diff) | |
download | kmod-upstream.tar.xz kmod-upstream.zip |
Adding upstream version 32+20240611.upstream/32+20240611upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a80780e..9527aa2 100644 --- a/configure.ac +++ b/configure.ac @@ -53,7 +53,9 @@ CC_CHECK_FUNC_BUILTIN([__builtin_uaddll_overflow], [ ], [ ]) AC_CHECK_MEMBERS([struct stat.st_mtim], [], [], [#include <sys/stat.h>]) # musl 1.0 and bionic 4.4 don't have strndupa -AC_CHECK_DECLS_ONCE([strndupa]) +# basename may be only available in libgen.h with the POSIX behavior, +# not desired here +AC_CHECK_DECLS_ONCE([[strndupa], [basename]], [], [], [[#include <string.h>]]) # RHEL 5 and older do not have be32toh AC_CHECK_DECLS_ONCE([be32toh]) |