diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2005-03-17 20:11:23 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2005-03-17 20:11:23 +0000 |
commit | dd801fdabd7e6d80e69cbde473b723a6ef7cff86 (patch) | |
tree | 6927d01de5dcee48cb0966fd11a634b4ba399195 /newlib/Makefile.in | |
parent | 993317d0ed9a7bee9b461e63a762b6df249ef867 (diff) | |
download | cygnal-dd801fdabd7e6d80e69cbde473b723a6ef7cff86.tar.gz cygnal-dd801fdabd7e6d80e69cbde473b723a6ef7cff86.tar.bz2 cygnal-dd801fdabd7e6d80e69cbde473b723a6ef7cff86.zip |
2005-03-17 Jeff Johnston <jjohnstn@redhat.com>
* configure.in: Add new check to see if compiler supports
aliasing of arrays and define _HAVE_ARRAY_ALIASING if true.
* configure: Regenerated.
* Makefile.in: Ditto.
* newlib.hin: Add _HAVE_ARRAY_ALIASING.
* libc/ctype/ctype_.c: Check for _HAVE_ARRAY_ALIASING before
aliasing the _ctype_ array to _ctype_b.
* libc/include/ctype.h: Change macros to use __ctype_ptr. Mark
_ctype_ as deprecated.
Diffstat (limited to 'newlib/Makefile.in')
-rw-r--r-- | newlib/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/newlib/Makefile.in b/newlib/Makefile.in index c4fa86e2b..caaa6f767 100644 --- a/newlib/Makefile.in +++ b/newlib/Makefile.in @@ -103,6 +103,7 @@ SYS_OBJECTLIST = @SYS_OBJECTLIST@ UNIX_OBJECTLIST = @UNIX_OBJECTLIST@ VERSION = @VERSION@ aext = @aext@ +libc_cv_array_aliasing = @libc_cv_array_aliasing@ libc_cv_initfinit_array = @libc_cv_initfinit_array@ libm_machine_dir = @libm_machine_dir@ machine_dir = @machine_dir@ |