summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2002-02-26 22:12:34 -0800
committerTim Rice <tim@multitalents.net>2002-02-26 22:12:34 -0800
commit200a5c0581687aa9d8eac2f682121d9965123bb8 (patch)
treef18a34b26eb72ddf11928f17851abdfbda30c916
parent7d2d1f1e67bd021110c9c62c0ffb7a35c54478fc (diff)
correction to sig_atomic_t test
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac4
2 files changed, 4 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 1fef0ca74..6f0c9937d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -54,6 +54,7 @@
54 more u_* fixes 54 more u_* fixes
55 - (bal) Imported missing fatal.c and fixed up Makefile.in 55 - (bal) Imported missing fatal.c and fixed up Makefile.in
56 - (tim) [configure.ac] correction to Bug 123 fix 56 - (tim) [configure.ac] correction to Bug 123 fix
57 [configure.ac] correction to sig_atomic_t test
57 58
5820020225 5920020225
59 - (bal) Last AIX patch. Moved aix_usrinfo() outside of do_setuserconext() 60 - (bal) Last AIX patch. Moved aix_usrinfo() outside of do_setuserconext()
@@ -7727,4 +7728,4 @@
7727 - Wrote replacements for strlcpy and mkdtemp 7728 - Wrote replacements for strlcpy and mkdtemp
7728 - Released 1.0pre1 7729 - Released 1.0pre1
7729 7730
7730$Id: ChangeLog,v 1.1889 2002/02/27 06:05:11 tim Exp $ 7731$Id: ChangeLog,v 1.1890 2002/02/27 06:12:34 tim Exp $
diff --git a/configure.ac b/configure.ac
index 28da15261..84229411e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.22 2002/02/27 06:05:12 tim Exp $ 1# $Id: configure.ac,v 1.23 2002/02/27 06:12:35 tim Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -1253,7 +1253,7 @@ fi
1253 1253
1254TYPE_SOCKLEN_T 1254TYPE_SOCKLEN_T
1255 1255
1256AC_CHECK_TYPES(sig_atomic_t) 1256AC_CHECK_TYPES(sig_atomic_t,,,[#include <signal.h>])
1257 1257
1258AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [ 1258AC_CACHE_CHECK([for size_t], ac_cv_have_size_t, [
1259 AC_TRY_COMPILE( 1259 AC_TRY_COMPILE(