]> andersk Git - openssh.git/commitdiff
20001228
authormouring <mouring>
Thu, 28 Dec 2000 00:07:07 +0000 (00:07 +0000)
committermouring <mouring>
Thu, 28 Dec 2000 00:07:07 +0000 (00:07 +0000)
 - (bal) Patch to add libutil.h to loginrec.c only if the platform has
   libutil.h.  Suggested by Pekka Savola <pekka@netcore.fi>

ChangeLog
configure.in
loginrec.c

index 321eb8b5e063e93f4ed18ce9daf1c057b304682d..74e688e939bbe6d79a091f4a67685845de881543 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,13 @@
+20001228
+ - (bal) Patch to add libutil.h to loginrec.c only if the platform has
+   libutil.h.  Suggested by Pekka Savola <pekka@netcore.fi>
+
 20001227
+ - (bal) Typo in configure.in: entut?ent should be endut?ent.  Suggested by 
+   Takumi Yamane <yamtak@b-session.com>
+ - (bal) Checks for getrlimit(), sysconf(), and setdtablesize().  Patch
+   by Corinna Vinschen <vinschen@redhat.com>
+ - (djm) Fix catman-do target for non-bash
  - (bal) Typo in configure.in: entut?ent should be endut?ent.  Suggested by 
    Takumi Yamane <yamtak@b-session.com>
  - (bal) Checks for getrlimit(), sysconf(), and setdtablesize().  Patch
index 37a2a5a53d5742232b6e860047b4b3c150260645..08cd9e125a1bad419908d944365624d5b6635c58 100644 (file)
@@ -309,6 +309,7 @@ AC_CHECK_FUNCS(arc4random atexit b64_ntop bcopy bindresvport_af clock fchmod fre
 dnl    Checks for time functions
 AC_CHECK_FUNCS(gettimeofday time)
 dnl    Checks for libutil functions
+AC_CHECK_HEADERS(libutil.h)
 AC_CHECK_FUNCS(login logout updwtmp logwtmp)
 dnl    Checks for utmp functions
 AC_CHECK_FUNCS(endutent getutent getutid getutline pututline setutent)
index a51a66d9bb3d65e94b2e5d5068b83f389d1b312e..22d2ee50b37f81d3f7f52f42ac758177d94ad1ec 100644 (file)
@@ -167,6 +167,10 @@ RCSID("$Id$");
 #  include <util.h>
 #endif
 
+#ifdef HAVE_LIBUTIL_H
+#   include <libutil.h>
+#endif
+
 /**
  ** prototypes for helper functions in this file
  **/
This page took 0.174537 seconds and 5 git commands to generate.