]> andersk Git - openssh.git/commitdiff
- (tim) [configure.ac] Autoconf didn't define HAVE_LIBIAF because we
authortim <tim>
Mon, 10 Sep 2007 23:24:17 +0000 (23:24 +0000)
committertim <tim>
Mon, 10 Sep 2007 23:24:17 +0000 (23:24 +0000)
   did a AC_CHECK_FUNCS within the AC_CHECK_LIB test.

ChangeLog
configure.ac

index dd499c24fc887da454629c3d933dee70e15d2870..b290326a1aa1766a3231ca66fb69b59f281a7e6a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
 20070910
  - (dtucker) [openbsd-compat/regress/closefromtest.c] Bug #1358: Always
    return 0 on successful test.  From David.Leonard at quest com.
+ - (tim) [configure.ac] Autoconf didn't define HAVE_LIBIAF because we
+   did a AC_CHECK_FUNCS within the AC_CHECK_LIB test.
 
 20070817
  - (dtucker) [sshd.8] Many Linux variants use a single "!" to denote locked
index a27c547ff6d013bcb47e8241bfb35e6501b33efc..af0fac5576d6fe1b6957588fb2b91e34be7f63df 100644 (file)
@@ -2004,7 +2004,10 @@ AC_CHECK_FUNCS(SHA256_Update EVP_sha256)
 saved_LIBS="$LIBS"
 AC_CHECK_LIB(iaf, ia_openinfo, [
        LIBS="$LIBS -liaf"
-       AC_CHECK_FUNCS(set_id, [SSHDLIBS="$SSHDLIBS -liaf"])
+       AC_CHECK_FUNCS(set_id, [SSHDLIBS="$SSHDLIBS -liaf"
+                               AC_DEFINE(HAVE_LIBIAF, 1,
+                       [Define if system has libiaf that supports set_id])
+                               ])
 ])
 LIBS="$saved_LIBS"
 
This page took 0.114257 seconds and 5 git commands to generate.