aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Reim <reimth@gmail.com>2022-08-16 11:11:18 +0800
committerIan Kent <raven@themaw.net>2022-08-22 10:25:43 +0800
commitc81826043d04456f8d5c7b3d391b2768b9502eb6 (patch)
tree9070701797db8a0ece0c4cdcf65c85866d6af820
parent595145d2448496eeaf7d2ea7eef8af145ea0f5b4 (diff)
downloadautofs-c81826043d04456f8d5c7b3d391b2768b9502eb6.tar.gz
autofs-5.1.8 - restore gcc flags after autoconf Kerberos 5 check
Heavily modified LIBS and CFLAGS harm succeeding configure checks Signed-off-by: Thomas Reim <reimth@gmail.com> Signed-off-by: Ian Kent <raven@themaw.net>
-rw-r--r--CHANGELOG1
-rw-r--r--aclocal.m43
2 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 5bb47099..68365e86 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -29,6 +29,7 @@
- handle innetgr() not present in musl.
- fix missing unlock in sasl_do_kinit_ext_cc().
- fix a couple of null cache locking problems.
+- restore gcc flags after autoconf Kerberos 5 check.
19/10/2021 autofs-5.1.8
- add xdr_exports().
diff --git a/aclocal.m4 b/aclocal.m4
index 33561aae..c671b5b0 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -296,6 +296,9 @@ else
LIBS="$LIBS $KRB5_LIBS"
AC_CHECK_FUNCS([krb5_principal_get_realm])
+
+ CFLAGS="$SAVE_CFLAGS"
+ LIBS="$SAVE_LIBS"
fi])
dnl --------------------------------------------------------------------------