]> andersk Git - openssh.git/commitdiff
- (dtucker) [configure.ac] Enable -Wuninitialized by default when compiling
authordtucker <dtucker>
Tue, 2 Aug 2005 07:21:29 +0000 (07:21 +0000)
committerdtucker <dtucker>
Tue, 2 Aug 2005 07:21:29 +0000 (07:21 +0000)
   with gcc.  ok djm@

ChangeLog
configure.ac

index 4f91666a67f887a2c687b27684a7c12e6f5ad187..c7971608e6cab958f8f1d4490ae92a2bf20c0d5a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,8 @@
    - dtucker@cvs.openbsd.org 2005/07/27 10:39:03
      [scp.c hostfile.c sftp-client.c]
      Silence bogus -Wuninitialized warnings; ok djm@
+ - (dtucker) [configure.ac] Enable -Wuninitialized by default when compiling
+   with gcc.  ok djm@
 
 20050726
  - (dtucker) [configure.ac] Update zlib warning message too, pointed out by
index 69f83db1054fe3c8e1080fa4c67eb369524da2dc..ef6ff76d72978a2a294ed5ab85a3b4be84f2edc6 100644 (file)
@@ -81,7 +81,7 @@ AC_C_INLINE
 AC_CHECK_DECL(LLONG_MAX, have_llong_max=1, , [#include <limits.h>])
 
 if test "$GCC" = "yes" || test "$GCC" = "egcs"; then
-       CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wno-uninitialized"
+       CFLAGS="$CFLAGS -Wall -Wpointer-arith -Wuninitialized"
        CFLAGS="$CFLAGS -Wsign-compare"
 
        if test -z "$have_llong_max"; then
This page took 0.055759 seconds and 5 git commands to generate.