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 | 6ed459ed948e626f6a8ae2dc1ee0e16ff985675a (patch) | |
tree | 64173c358aa7f3222a49a0f8ab3dc4f7b11dc7c7 | |
parent | d452d787f1b4fbbd1b6cb4944f224c6f75cf0d29 (diff) | |
download | pam-6ed459ed948e626f6a8ae2dc1ee0e16ff985675a.tar.gz pam-6ed459ed948e626f6a8ae2dc1ee0e16ff985675a.tar.bz2 pam-6ed459ed948e626f6a8ae2dc1ee0e16ff985675a.zip |
configure.ac: do not use AC_PROG_GCC_TRADITIONAL
According to the GNU Autoconf manual, this macro is obsolescent,
since current versions of the GNU C compiler fix the header files
automatically when installed.
* configure.ac (AC_PROG_GCC_TRADITIONAL): Remove.
-rw-r--r-- | configure.ac | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index cde7aea3..4fbf7a0d 100644 --- a/configure.ac +++ b/configure.ac @@ -654,7 +654,6 @@ AC_TYPE_PID_T AC_TYPE_SIZE_T dnl Checks for library functions. -AC_PROG_GCC_TRADITIONAL 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) |