]> andersk Git - openssh.git/blobdiff - configure.ac
- deraadt@cvs.openbsd.org 2006/03/25 18:41:45
[openssh.git] / configure.ac
index 4feb278bd931a9fa5ca3eee3c145650c3b0f9c66..62dd8d79cfdde0ea2a0139831c141e70c2a6407c 100644 (file)
@@ -669,6 +669,7 @@ dnl Checks for header files.
 AC_CHECK_HEADERS( \
        bstring.h \
        crypt.h \
+       crypto/sha2.h \
        dirent.h \
        endian.h \
        features.h \
@@ -679,7 +680,6 @@ AC_CHECK_HEADERS( \
        iaf.h \
        limits.h \
        login.h \
-       login_cap.h \
        maillock.h \
        ndir.h \
        netdb.h \
@@ -740,6 +740,11 @@ AC_CHECK_HEADERS(sys/ptms.h, [], [], [
 #endif
 ])
 
+# login_cap.h requires sys/types.h on NetBSD
+AC_CHECK_HEADERS(login_cap.h, [], [], [
+#include <sys/types.h>
+])
+
 # Checks for libraries.
 AC_CHECK_FUNC(yp_match, , AC_CHECK_LIB(nsl, yp_match))
 AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
This page took 0.033918 seconds and 4 git commands to generate.