diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-08-31 21:23:47 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-08-31 21:23:47 +0000 |
commit | 982ba2146087c61c376d4239ef7608c79cb51b61 (patch) | |
tree | 532cfad7e7955e45cde3ae04ae5f7c23d3743226 /configure.ac | |
parent | 6081c60556c63b013ccb26fc4e93d8e05e26d349 (diff) | |
download | curl-982ba2146087c61c376d4239ef7608c79cb51b61.tar.gz |
oops, the GNU GSS patch could clobber the CPPFLAGS variable and it thus
broke krb4 builds!
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 5f29b3ca1..494c2048a 100644 --- a/configure.ac +++ b/configure.ac @@ -700,6 +700,7 @@ AC_ARG_WITH(gssapi, fi ]) +save_CPPFLAGS="$CPPFLAGS" AC_MSG_CHECKING([if GSSAPI support is requested]) if test x"$want_gss" = xyes; then AC_MSG_RESULT(yes) @@ -711,7 +712,6 @@ if test x"$want_gss" = xyes; then GSSAPI_INCS="-I$GSSAPI_ROOT/include" fi fi - save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $GSSAPI_INCS" AC_CHECK_HEADER(gss.h, |