]> err.no Git - dpkg/commitdiff
Undo earlier changes from Adam to handle -W options for the compiler
authorWichert Akkerman <wakkerma@debian.org>
Sun, 24 Dec 2000 16:59:21 +0000 (16:59 +0000)
committerWichert Akkerman <wakkerma@debian.org>
Sun, 24 Dec 2000 16:59:21 +0000 (16:59 +0000)
and do things much simpler instead based on the old working but not
correctly used code.

ChangeLog
Makefile.conf.in
automake/dpkg.m4
configure.in

index c40d8a65e4474ddc5925ee7e56d1dadc66997320..1dc729843882a7fc00ac939161d731345e418214 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,9 @@
 Sun Dec 24 17:35:12 CET 2000 Wichert Akkerman <wakkerma@debian.org>
 
   * dselect/main.cc: make commandline options work again
+  * Makefile.conf.in, configure.in,automake/dpkg.m4: revert changes from Adam
+  * Makefile.conf.in: add @CWARNS@ to CFLAGS
+  * configure.in: add AC_SUBST for CWARNS
 
 Sun Dec 24 17:05:45 CET 2000 Wichert Akkerman <wakkerma@debian.org>
 
index 140982d75b38d12bb916991ca2a955e93a836cbc..00a645488a836ade29a5a9bf69665d9f87845d60 100644 (file)
@@ -44,7 +44,7 @@ WARN_POINTERMATH      = @WARN_POINTERMATH@
 WARN_IMPLICIT          = @WARN_IMPLICIT@
 
 CC                     = @CC@
-CFLAGS                 = @CFLAGS@
+CFLAGS                 = @CFLAGS@ @CWARNS@
 INSTALL                        = @INSTALL@
 INSTALL_PROGRAM                = @INSTALL_PROGRAM@
 INSTALL_DATA           = @INSTALL_DATA@
@@ -70,7 +70,7 @@ SSD_LIBS              = @SSD_LIBS@
 ZLIB_CFLAGS            = @ZLIB_CFLAGS@
 ZLIB_LIBS              = @ZLIB_LIBS@
 
-ALL_CFLAGS             = $(CFLAGS) $(DEFS) $(NLS_CFLAGS) $(INCLUDE_CFLAGS) $(ZLIB_CFLAGS) $(WARN_ALL) $(WARN_WRITESTRINGS) $(WARN_POINTERMATH) $(WARN_IMPLICIT)
+ALL_CFLAGS             = $(CFLAGS) $(DEFS) $(NLS_CFLAGS) $(INCLUDE_CFLAGS) $(ZLIB_CFLAGS) 
 ALL_CXXFLAGS           = $(ALL_CFLAGS) $(CXXFLAGS)
 
 .c.o:
index 8b2d68d7d4ac46c30efbd50ba8b38fe60ca4efb2..f5146449deeec2c2ba331dbeebb3d66a1aaff763 100644 (file)
@@ -16,12 +16,12 @@ AC_DEFUN(DPKG_CACHED_TRY_COMPILE,[
  fi
 ])
 
-dnl DPKG_C_GCC_TRY_WARNS(<warnings>,<substvar>,<cachevar>)
+dnl DPKG_C_GCC_TRY_WARNS(<warnings>,<cachevar>)
 AC_DEFUN(DPKG_C_GCC_TRY_WARNS,[
  AC_MSG_CHECKING([GCC warning flag(s) $1])
  if test "${GCC-no}" = yes
  then
-  AC_CACHE_VAL($3,[
+  AC_CACHE_VAL($2,[
    oldcflags="${CFLAGS-}"
    CFLAGS="${CFLAGS-} ${CWARNS} $1 -Werror"
    AC_TRY_COMPILE([
@@ -29,20 +29,16 @@ AC_DEFUN(DPKG_C_GCC_TRY_WARNS,[
 #include <stdio.h>
 ],[
     strcmp("a","b"); fprintf(stdout,"test ok\n");
-], [$3=yes], [$3=no])
+], [$2=yes], [$2=no])
    CFLAGS="${oldcflags}"])
-  if test "x$$3" = xyes; then
-   $2='$1'
+  if test "x$$2" = xyes; then
    CWARNS="${CWARNS} $1"
    AC_MSG_RESULT(ok)
   else
-   $3=''
    $2=''
    AC_MSG_RESULT(no)
   fi
  else
-  $2=''
   AC_MSG_RESULT(no, not using GCC)
  fi
- AC_SUBST($2)
 ])
index 9f7cade4e9a2dd45a31f9b9146c44b0f77392142..fd3b4d9f4c3b1f5e30fd6a763edbb46506cbe07a 100644 (file)
@@ -158,10 +158,11 @@ AC_TRY_COMPILE(,[
 } inline int foo (int x) {], AC_DEFINE(HAVE_INLINE))
 
 
-DPKG_C_GCC_TRY_WARNS(-Wall -Wno-implicit, WARN_ALL, dpkg_cv_c_gcc_warn_all)
-DPKG_C_GCC_TRY_WARNS(-Wwrite-strings, WARN_WRITESTRINGS, dpkg_cv_c_gcc_warn_writestrings)
-DPKG_C_GCC_TRY_WARNS(-Wpointer-arith, WARN_POINTERMATH, dpkg_cv_c_gcc_warn_pointerarith)
-DPKG_C_GCC_TRY_WARNS(-Wimplicit -Wnested-externs, WARN_IMPLICIT, dpkg_cv_c_gcc_warn_implicit)
+DPKG_C_GCC_TRY_WARNS(-Wall -Wno-implicit, dpkg_cv_c_gcc_warn_all)
+DPKG_C_GCC_TRY_WARNS(-Wwrite-strings, dpkg_cv_c_gcc_warn_writestrings)
+DPKG_C_GCC_TRY_WARNS(-Wpointer-arith, dpkg_cv_c_gcc_warn_pointerarith)
+DPKG_C_GCC_TRY_WARNS(-Wimplicit -Wnested-externs, dpkg_cv_c_gcc_warn_implicit)
+AC_SUBST(CWARNS)
 
 dnl Force this here so we can do the next step
 test "x$prefix" = xNONE && prefix="$ac_default_prefix"