summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--configure.in7
2 files changed, 5 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 052948ef7..e5de631a4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,7 @@
9 - (djm) Sync with -current openbsd-compat/readpassphrase.c: 9 - (djm) Sync with -current openbsd-compat/readpassphrase.c:
10 - djm@cvs.openbsd.org 2001/06/27 13:23:30 10 - djm@cvs.openbsd.org 2001/06/27 13:23:30
11 typo, spotted by Tom Holroyd <tomh@po.crl.go.jp>; ok deraadt@ 11 typo, spotted by Tom Holroyd <tomh@po.crl.go.jp>; ok deraadt@
12 - (djm) Turn up warnings if gcc or egcs detected
12 13
1320010625 1420010625
14 - OpenBSD CVS Sync 15 - OpenBSD CVS Sync
@@ -5803,4 +5804,4 @@
5803 - Wrote replacements for strlcpy and mkdtemp 5804 - Wrote replacements for strlcpy and mkdtemp
5804 - Released 1.0pre1 5805 - Released 1.0pre1
5805 5806
5806$Id: ChangeLog,v 1.1330 2001/06/27 13:26:38 djm Exp $ 5807$Id: ChangeLog,v 1.1331 2001/06/27 13:35:51 djm Exp $
diff --git a/configure.in b/configure.in
index 199c1a694..554d1cf40 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
1# $Id: configure.in,v 1.292 2001/06/25 08:09:17 djm Exp $ 1# $Id: configure.in,v 1.293 2001/06/27 13:35:53 djm Exp $
2 2
3AC_INIT(ssh.c) 3AC_INIT(ssh.c)
4 4
@@ -41,10 +41,9 @@ if test -z "$LD" ; then
41fi 41fi
42AC_SUBST(LD) 42AC_SUBST(LD)
43 43
44# C Compiler features
45AC_C_INLINE 44AC_C_INLINE
46if test "$GCC" = "yes"; then 45if test "$GCC" = "yes" || test "$GCC" = "egcs"; then
47 CFLAGS="$CFLAGS -Wall" 46 CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wno-uninitialized"
48fi 47fi
49 48
50# Check for some target-specific stuff 49# Check for some target-specific stuff