diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2009-09-18 16:01:37 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2009-09-18 16:01:37 +0200 |
commit | 6465b6a71f79ed135f18fee5f8ab40ecd8265d39 (patch) | |
tree | 06dad70a3d428e576ef513e7963e1de582ca8611 /gcc/ada/mingw32.h | |
parent | 0816e70ccfa8b42ac5b25fa8ab9c5da2cfea7d58 (diff) | |
download | gcc-6465b6a71f79ed135f18fee5f8ab40ecd8265d39.zip gcc-6465b6a71f79ed135f18fee5f8ab40ecd8265d39.tar.gz gcc-6465b6a71f79ed135f18fee5f8ab40ecd8265d39.tar.bz2 |
[multiple changes]
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.
From-SVN: r151844
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 011e90b..f11572e 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 |