emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r100759: * configure.in: Use -Wold-st


From: Dan Nicolaescu
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r100759: * configure.in: Use -Wold-style-definition if available.
Date: Thu, 08 Jul 2010 16:34:47 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100759
committer: Dan Nicolaescu <address@hidden>
branch nick: trunk
timestamp: Thu 2010-07-08 16:34:47 -0700
message:
  * configure.in: Use -Wold-style-definition if available.
  This helps with the transition to standard C code, it can be
  removed when done.
modified:
  ChangeLog
  configure
  configure.in
=== modified file 'ChangeLog'
--- a/ChangeLog 2010-07-08 03:31:04 +0000
+++ b/ChangeLog 2010-07-08 23:34:47 +0000
@@ -1,5 +1,9 @@
 2010-07-08  Dan Nicolaescu  <address@hidden>
 
+       * configure.in: Use -Wold-style-definition if available.
+       This helps with the transition to standard C code, it can be
+       removed when done.
+
        * configure.in (PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS): Remove.
 
        * configure.in (UNEXEC_OBJ): Add comment about values for MSDOS

=== modified file 'configure'
--- a/configure 2010-07-08 03:31:04 +0000
+++ b/configure 2010-07-08 23:34:47 +0000
@@ -4830,6 +4830,39 @@
 unset has_option
 unset SAVE_CFLAGS
 
+### Use -Wold-style-definition if the compiler supports it
+# This can be removed when conversion to standard C is finished.
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether gcc understands 
-Wold-style-definition" >&5
+$as_echo_n "checking whether gcc understands -Wold-style-definition... " >&6; }
+SAVE_CFLAGS="$CFLAGS"
+CFLAGS="$CFLAGS -Wold-style-definition"
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h.  */
+
+int
+main ()
+{
+
+  ;
+  return 0;
+}
+_ACEOF
+if ac_fn_c_try_compile "$LINENO"; then :
+  has_option=yes
+else
+  has_option=no
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
+if test $has_option = yes; then
+   C_WARNINGS_SWITCH="-Wold-style-definition $C_WARNINGS_SWITCH"
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $has_option" >&5
+$as_echo "$has_option" >&6; }
+CFLAGS="$SAVE_CFLAGS"
+unset has_option
+unset SAVE_CFLAGS
+
+
 #### Some other nice autoconf tests.
 
 ac_ext=c

=== modified file 'configure.in'
--- a/configure.in      2010-07-08 03:31:04 +0000
+++ b/configure.in      2010-07-08 23:34:47 +0000
@@ -757,6 +757,21 @@
 unset has_option
 unset SAVE_CFLAGS
 
+### Use -Wold-style-definition if the compiler supports it
+# This can be removed when conversion to standard C is finished.
+AC_MSG_CHECKING([whether gcc understands -Wold-style-definition])
+SAVE_CFLAGS="$CFLAGS"
+CFLAGS="$CFLAGS -Wold-style-definition"
+AC_TRY_COMPILE([], [], has_option=yes, has_option=no,)
+if test $has_option = yes; then
+   C_WARNINGS_SWITCH="-Wold-style-definition $C_WARNINGS_SWITCH"
+fi
+AC_MSG_RESULT($has_option)
+CFLAGS="$SAVE_CFLAGS"
+unset has_option
+unset SAVE_CFLAGS
+
+
 #### Some other nice autoconf tests.
 
 dnl checks for programs


reply via email to

[Prev in Thread] Current Thread [Next in Thread]