diff options
author | Dmitry V. Levin <ldv@strace.io> | 2024-08-10 08:00:00 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@strace.io> | 2024-08-14 08:00:00 +0000 |
commit | d452d787f1b4fbbd1b6cb4944f224c6f75cf0d29 (patch) | |
tree | e624da0fe90cfde69395e9972250f47b4b6e144e | |
parent | b21124a5cd7f5d97428bb29066a387658b55fb53 (diff) | |
download | pam-d452d787f1b4fbbd1b6cb4944f224c6f75cf0d29.tar.gz pam-d452d787f1b4fbbd1b6cb4944f224c6f75cf0d29.tar.bz2 pam-d452d787f1b4fbbd1b6cb4944f224c6f75cf0d29.zip |
configure.ac: do not use AC_FUNC_MEMCMP
According to the GNU Autoconf manual, this macro is obsolescent,
as current systems have a working 'memcmp'.
* configure.ac (AC_FUNC_MEMCMP): Remove.
-rw-r--r-- | configure.ac | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index b9942403..cde7aea3 100644 --- a/configure.ac +++ b/configure.ac @@ -655,7 +655,6 @@ AC_TYPE_SIZE_T dnl Checks for library functions. AC_PROG_GCC_TRADITIONAL -AC_FUNC_MEMCMP AC_CHECK_FUNCS(getdomainname lckpwdf) AC_CHECK_FUNCS(getutent_r getpwnam_r getpwuid_r getgrnam_r getgrgid_r getspnam_r getmntent_r) AC_CHECK_FUNCS(getgrouplist) |