diff options
author | Bruno Haible <bruno@clisp.org> | 2002-09-18 20:12:52 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:08:46 +0200 |
commit | ed78c98966559de85fcf1fc773a4340310bddc53 (patch) | |
tree | 7e47f6ffd9527a0fa2ff371f647727d322685dd4 /intl | |
parent | 06c1b951eca26fb583e0f23294cfe684591f46cc (diff) | |
download | external_gettext-ed78c98966559de85fcf1fc773a4340310bddc53.zip external_gettext-ed78c98966559de85fcf1fc773a4340310bddc53.tar.gz external_gettext-ed78c98966559de85fcf1fc773a4340310bddc53.tar.bz2 |
Avoid compilation failures on MacOS X.
Diffstat (limited to 'intl')
-rw-r--r-- | intl/ChangeLog | 9 | ||||
-rw-r--r-- | intl/libgnuintl.h | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/intl/ChangeLog b/intl/ChangeLog index 97258a0..ca9026d 100644 --- a/intl/ChangeLog +++ b/intl/ChangeLog @@ -1,3 +1,12 @@ +2002-09-18 Bruno Haible <bruno@clisp.org> + + * libgnuintl.h (_INTL_REDIRECT_ASM): Don't define when using Apple cc. + Reported by Julien Chiron <julien.chiron@univ.u-3mrs.fr>. + +2002-08-06 Bruno Haible <bruno@clisp.org> + + * gettext-0.11.5 released. + 2002-07-25 Bruno Haible <bruno@clisp.org> * gettext-0.11.4 released. diff --git a/intl/libgnuintl.h b/intl/libgnuintl.h index ed25fe9..3ae78ab 100644 --- a/intl/libgnuintl.h +++ b/intl/libgnuintl.h @@ -93,7 +93,7 @@ extern "C" { If he doesn't, we choose the method. A third possible method is _INTL_REDIRECT_ASM, supported only by GCC. */ #if !(defined _INTL_REDIRECT_INLINE || defined _INTL_REDIRECT_MACROS) -# if __GNUC__ >= 2 && (defined __STDC__ || defined __cplusplus) +# if __GNUC__ >= 2 && !defined __APPLE_CC__ && (defined __STDC__ || defined __cplusplus) # define _INTL_REDIRECT_ASM # else # ifdef __cplusplus |