- (dtucker) [configure.ac] Enable -Wuninitialized by default when compiling
   with gcc.  ok djm@
diff --git a/configure.ac b/configure.ac
index df3712d..6e2f5c1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-# $Id: configure.ac,v 1.280 2005/07/26 02:00:42 dtucker Exp $
+# $Id: configure.ac,v 1.281 2005/08/02 07:21:29 dtucker Exp $
 #
 # Copyright (c) 1999-2004 Damien Miller
 #
@@ -81,7 +81,7 @@
 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