]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- Removed redundant subdirectories
authorDamien Miller <djm@mindrot.org>
Fri, 29 Oct 1999 02:37:01 +0000 (12:37 +1000)
committerDamien Miller <djm@mindrot.org>
Fri, 29 Oct 1999 02:37:01 +0000 (12:37 +1000)
 - Integrated part of a patch from Dan Brosemer <odin@linuxfreak.com> for
   building on Debian.

ChangeLog
config.h.in
configure.in

index 8a954adcbb2d07d7f665375e177370585cb40916..04a5f7d880fca3737d6fc46e3945a4ed87ba41b3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,9 @@
  - Make distclean now removed configure script
  - Improved PAM logging
  - Added some debug() calls for PAM
+ - Removed redundant subdirectories
+ - Integrated part of a patch from Dan Brosemer <odin@linuxfreak.com> for 
+   building on Debian.
 
 19991028
  - Further PAM enhancements.
index 44a5686d04ebe39e2ac6e821aeda0fc8216c3f81..f106c04d6c5ec40dda3fbff8a109ab91831b57a7 100644 (file)
 /* Define if you have the dl library (-ldl).  */
 #undef HAVE_LIBDL
 
+/* Define if you have the nsl library (-lnsl).  */
+#undef HAVE_LIBNSL
+
 /* Define if you have the pam library (-lpam).  */
 #undef HAVE_LIBPAM
 
index 0fac461c8176ea847f827fa6612a73cb3b2e8329..b6038523b41d5d5529e056f15a87c158881cf65c 100644 (file)
@@ -14,8 +14,10 @@ dnl Replace `main' with a function in -lutil:
 AC_CHECK_LIB(util, logout, ,AC_MSG_ERROR([*** -lutil missing - this is part of libc. ***]))
 dnl Replace `main' with a function in -lz:
 AC_CHECK_LIB(z, deflate, ,AC_MSG_ERROR([*** zlib missing - please install first ***]))
+dnl check for nsl
+AC_CHECK_LIB(nsl, yp_match, , )
 dnl check for pwdb
-AC_CHECK_LIB(pwdb, pwdb_new, ,AC_MSG_ERROR([*** libpwdb missing - please install first ***]))
+AC_CHECK_LIB(pwdb, pwdb_new, , )
 dnl check for dl
 AC_CHECK_LIB(dl, dlopen, ,AC_MSG_ERROR([*** libdl missing - please install first ***]))
 dnl check for pam
@@ -23,6 +25,7 @@ AC_CHECK_LIB(pam, pam_authenticate, ,AC_MSG_ERROR([*** PAM missing - please inst
 
 dnl Check for stuff in path.
 AC_CHECK_PROG(AR, ar, ar)
+AC_CHECK_PROG(RANLIB, ranlib, ranlib)
 
 dnl Check for ssl headers
 AC_CHECK_HEADER(openssl/bn.h, [AC_DEFINE(HAVE_OPENSSL)], [AC_CHECK_HEADER(ssl/bn.h, [AC_DEFINE(HAVE_SSL)], [AC_MSG_ERROR([*** ssl library missing - please install first ***])])])