diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-18 14:01:37 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-18 14:01:37 +0000 |
commit | 0713e0e653b39644e5357fa1b872a33c68aff4e8 (patch) | |
tree | 06dad70a3d428e576ef513e7963e1de582ca8611 /gcc/ada/mingw32.h | |
parent | 2e7aba8e1c18ebba49ec9f3dac0e27783cb7dd46 (diff) | |
download | gcc-0713e0e653b39644e5357fa1b872a33c68aff4e8.tar.gz |
2009-09-18 Pascal Obry <obry@adacore.com>
* mingw32.h: Activate Unicode support for x86-64 Windows platform.
2009-09-18 Vadim Godunko <godunko@adacore.com>
* s-oscons-tmplt.c: Add circuit for handling IOV_MAX macro on IRIX.
2009-09-18 Javier Miranda <miranda@adacore.com>
* exp_aggr.adb (Backend_Processing_Possible): Disable backend
processing for array aggregates in the VM backend if the array has
aliased components.
2009-09-18 Ed Schonberg <schonberg@adacore.com>
* sem_ch4.adb (Analyze_Indexed_Component): Emit error if the type of
the prefix indicates a previous semantic error, and this is the first
error in the program.
2009-09-18 Bob Duff <duff@adacore.com>
* gnat_ugn.texi: Minor editing.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@151844 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/mingw32.h')
-rw-r--r-- | gcc/ada/mingw32.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/ada/mingw32.h b/gcc/ada/mingw32.h index 011e90bb270..f11572e7c2a 100644 --- a/gcc/ada/mingw32.h +++ b/gcc/ada/mingw32.h @@ -44,7 +44,8 @@ #if (((__MINGW32_MAJOR_VERSION == 3 \ && __MINGW32_MINOR_VERSION >= 9) \ - || (__MINGW32_MAJOR_VERSION >= 4)) \ + || (__MINGW32_MAJOR_VERSION >= 4) \ + || defined (__MINGW64)) \ && !defined (RTX)) #define GNAT_UNICODE_SUPPORT |