summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-02-24 21:41:10 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-02-24 21:41:10 +0000
commit8697e0866053dcdec35d556f8ac6adf4d79160af (patch)
tree96f7e398c9bac926c5fe6a81c9671229c08984f3
parentbdb063d4e1d46cfff89c521d595ac90a570602a3 (diff)
- (bal) Missed part of the UNIX sockets patch. Patch by Corinna
Vinschen <vinschen@redhat.com> - (bal) Reorder where 'strftime' is detected to resolve linking issues on SCO. Patch by Tim Rice <tim@multitalents.net>
-rw-r--r--ChangeLog8
-rw-r--r--acconfig.h5
-rw-r--r--configure.in6
3 files changed, 14 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 32c97f4a0..1ac4eb040 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,10 @@
120010224 120010224
2 - (bal) Missed part of the UNIX sockets patch. Patch by Corinna
3 Vinschen <vinschen@redhat.com>
4 - (bal) Reorder where 'strftime' is detected to resolve linking
5 issues on SCO. Patch by Tim Rice <tim@multitalents.net>
6
720010224
2 - (bal) pam_stack fix to correctly detect between RH7 and older RHs. 8 - (bal) pam_stack fix to correctly detect between RH7 and older RHs.
3 Patch by Pekka Savola <pekkas@netcore.fi> 9 Patch by Pekka Savola <pekkas@netcore.fi>
4 - (bal) Renamed sigaction.[ch] to sigact.[ch]. Causes problems with 10 - (bal) Renamed sigaction.[ch] to sigact.[ch]. Causes problems with
@@ -4114,4 +4120,4 @@
4114 - Wrote replacements for strlcpy and mkdtemp 4120 - Wrote replacements for strlcpy and mkdtemp
4115 - Released 1.0pre1 4121 - Released 1.0pre1
4116 4122
4117$Id: ChangeLog,v 1.818 2001/02/24 00:55:04 mouring Exp $ 4123$Id: ChangeLog,v 1.819 2001/02/24 21:41:10 mouring Exp $
diff --git a/acconfig.h b/acconfig.h
index d27153476..01dfb4b6d 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -1,4 +1,4 @@
1/* $Id: acconfig.h,v 1.102 2001/02/18 06:01:00 djm Exp $ */ 1/* $Id: acconfig.h,v 1.103 2001/02/24 21:41:10 mouring Exp $ */
2 2
3#ifndef _CONFIG_H 3#ifndef _CONFIG_H
4#define _CONFIG_H 4#define _CONFIG_H
@@ -293,6 +293,9 @@
293/* Define if you have BSD auth support */ 293/* Define if you have BSD auth support */
294#undef BSD_AUTH 294#undef BSD_AUTH
295 295
296/* Define if X11 doesn't support AF_UNIX sockets on that system */
297#undef NO_X11_UNIX_SOCKETS
298
296@BOTTOM@ 299@BOTTOM@
297 300
298/* ******************* Shouldn't need to edit below this line ************** */ 301/* ******************* Shouldn't need to edit below this line ************** */
diff --git a/configure.in b/configure.in
index e236fa491..4ed1eb7c5 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
1# $Id: configure.in,v 1.252 2001/02/24 00:55:05 mouring Exp $ 1# $Id: configure.in,v 1.253 2001/02/24 21:41:11 mouring Exp $
2 2
3AC_INIT(ssh.c) 3AC_INIT(ssh.c)
4 4
@@ -358,6 +358,8 @@ AC_CHECK_FUNC(utimes,
358 [], [ AC_CHECK_LIB(c89, utimes, LIBS="$LIBS -lc89") ] 358 [], [ AC_CHECK_LIB(c89, utimes, LIBS="$LIBS -lc89") ]
359) 359)
360 360
361AC_FUNC_STRFTIME
362
361# Checks for header files. 363# Checks for header files.
362AC_CHECK_HEADERS(bstring.h endian.h floatingpoint.h getopt.h lastlog.h limits.h login.h login_cap.h maillock.h netdb.h netgroup.h netinet/in_systm.h paths.h poll.h pty.h regex.h shadow.h security/pam_appl.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h sys/poll.h sys/queue.h sys/select.h sys/stat.h sys/stropts.h sys/sysmacros.h sys/time.h sys/ttcompat.h sys/un.h stddef.h time.h ttyent.h usersec.h util.h utime.h utmp.h utmpx.h vis.h) 364AC_CHECK_HEADERS(bstring.h endian.h floatingpoint.h getopt.h lastlog.h limits.h login.h login_cap.h maillock.h netdb.h netgroup.h netinet/in_systm.h paths.h poll.h pty.h regex.h shadow.h security/pam_appl.h sys/bitypes.h sys/bsdtty.h sys/cdefs.h sys/poll.h sys/queue.h sys/select.h sys/stat.h sys/stropts.h sys/sysmacros.h sys/time.h sys/ttcompat.h sys/un.h stddef.h time.h ttyent.h usersec.h util.h utime.h utmp.h utmpx.h vis.h)
363 365
@@ -534,8 +536,6 @@ fi
534 536
535AC_FUNC_GETPGRP 537AC_FUNC_GETPGRP
536 538
537AC_FUNC_STRFTIME
538
539# Check for PAM libs 539# Check for PAM libs
540PAM_MSG="no" 540PAM_MSG="no"
541AC_ARG_WITH(pam, 541AC_ARG_WITH(pam,