diff options
author | Daniel Jacobowitz <drow@false.org> | 2003-09-25 14:27:21 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2003-09-25 14:27:21 +0000 |
commit | 394559cb948cf40cc3953039438ce0e3e8398220 (patch) | |
tree | 7ab66b1eaf9fbd0364b21059d71fd0e2cf8a7e2c /config | |
parent | 8ddbb5935de26506eecf7ca57706bc46f272a4fa (diff) | |
download | binutils-394559cb948cf40cc3953039438ce0e3e8398220.tar.gz binutils-394559cb948cf40cc3953039438ce0e3e8398220.tar.bz2 binutils-394559cb948cf40cc3953039438ce0e3e8398220.zip |
* acx.m4 (AC_PROG_CPP_WERROR): New.
Diffstat (limited to 'config')
-rw-r--r-- | config/ChangeLog | 4 | ||||
-rw-r--r-- | config/acx.m4 | 15 |
2 files changed, 19 insertions, 0 deletions
diff --git a/config/ChangeLog b/config/ChangeLog index 7a7605bc467..2ea4e15744b 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,7 @@ +2003-09-24 Daniel Jacobowitz <drow@mvista.com> + + * acx.m4 (AC_PROG_CPP_WERROR): New. + 2003-07-07 Zack Weinberg <zack@codesourcery.com> * gettext.m4: Delete all former contents. diff --git a/config/acx.m4 b/config/acx.m4 index ea5cb07dcab..96b7c8a5cad 100644 --- a/config/acx.m4 +++ b/config/acx.m4 @@ -140,3 +140,18 @@ else $1="$ac_cv_prog_$1" fi ]) []dnl # NCN_STRICT_CHECK_TARGET_TOOL + +### +# AC_PROG_CPP_WERROR +# Used for autoconf 2.5x to force AC_PREPROC_IFELSE to reject code which +# triggers warnings from the preprocessor. Will be in autoconf 2.58. +# For now, using this also overrides header checks to use only the +# preprocessor (matches 2.13 behavior; matching 2.58's behavior is a +# bit harder from here). +# Eventually autoconf will default to checking headers with the compiler +# instead, and we'll have to do this differently. + +AC_DEFUN([AC_PROG_CPP_WERROR], +[AC_REQUIRE([AC_PROG_CPP])dnl +m4_define([AC_CHECK_HEADER],m4_defn([_AC_CHECK_HEADER_OLD])) +ac_c_preproc_warn_flag=yes])# AC_PROG_CPP_WERROR |