From: Bruno Haible Date: Wed, 18 Sep 2002 20:12:52 +0000 (+0000) Subject: Avoid compilation failures on MacOS X. X-Git-Tag: v0.12~1273 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed78c98966559de85fcf1fc773a4340310bddc53;p=thirdparty%2Fgettext.git Avoid compilation failures on MacOS X. --- diff --git a/intl/ChangeLog b/intl/ChangeLog index 97258a049..ca9026d3d 100644 --- a/intl/ChangeLog +++ b/intl/ChangeLog @@ -1,3 +1,12 @@ +2002-09-18 Bruno Haible + + * libgnuintl.h (_INTL_REDIRECT_ASM): Don't define when using Apple cc. + Reported by Julien Chiron . + +2002-08-06 Bruno Haible + + * gettext-0.11.5 released. + 2002-07-25 Bruno Haible * gettext-0.11.4 released. diff --git a/intl/libgnuintl.h b/intl/libgnuintl.h index ed25fe9f5..3ae78abed 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