diff options
author | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-24 14:00:38 +0000 |
---|---|---|
committer | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-24 14:00:38 +0000 |
commit | 6e11b263c7a7f614c5a57af09ff9c2aa2fc58a30 (patch) | |
tree | 56c3519f332c97ca08d7d9c1d54497d365375822 /libcpp | |
parent | 5c3f9fb7760f8db720c1ab69d5355a752ac15e86 (diff) | |
download | gcc-6e11b263c7a7f614c5a57af09ff9c2aa2fc58a30.tar.gz |
PR preprocessor/15824
* configure.ac: Correct HAVE_UCHAR test to #include <sys/types.h>
directly, instead of the non-existant "system.h" and "ansidecl.h".
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91157 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libcpp')
-rw-r--r-- | libcpp/ChangeLog | 7 | ||||
-rwxr-xr-x | libcpp/configure | 3 | ||||
-rw-r--r-- | libcpp/configure.ac | 3 |
3 files changed, 9 insertions, 4 deletions
diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog index 3e8567bf05e..a049652093c 100644 --- a/libcpp/ChangeLog +++ b/libcpp/ChangeLog @@ -1,3 +1,10 @@ +2004-11-24 Roger Sayle <roger@eyesopen.com> + + PR preprocessor/15824 + * configure.ac: Correct HAVE_UCHAR test to #include <sys/types.h> + directly, instead of the non-existant "system.h" and "ansidecl.h". + * configure: Regenerate. + 2004-11-23 Daniel Jacobowitz <dan@codesourcery.com> Joseph Myers <joseph@codesourcery.com> diff --git a/libcpp/configure b/libcpp/configure index 978296b461f..274fb0130e6 100755 --- a/libcpp/configure +++ b/libcpp/configure @@ -6149,8 +6149,7 @@ cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ -#include "ansidecl.h" -#include "system.h" +#include <sys/types.h> int main () diff --git a/libcpp/configure.ac b/libcpp/configure.ac index f088ac80b29..8a9a44986e8 100644 --- a/libcpp/configure.ac +++ b/libcpp/configure.ac @@ -57,8 +57,7 @@ ZW_GNU_GETTEXT_SISTER_DIR AC_CACHE_CHECK(for uchar, gcc_cv_type_uchar, [AC_TRY_COMPILE([ -#include "ansidecl.h" -#include "system.h" +#include <sys/types.h> ], [if ((uchar *)0) return 0; if (sizeof(uchar)) return 0;], |