From: David Michael Date: Sun, 26 Oct 2014 17:33:12 +0000 (-0400) Subject: git-compat-util.h: support variadic macros with the XL C compiler X-Git-Tag: v2.2.0-rc0~11^2~2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/f51140c2470b50bcaff63b850f5e258c23d5853d?ds=inline;hp=--cc git-compat-util.h: support variadic macros with the XL C compiler When the XL C compiler is run with an appropriate language level or suboption, it defines a feature test macro to indicate support for variadic macros by defining __C99_MACRO_WITH_VA_ARGS C preprocessor macro. This was tested on z/OS, but it should also work on AIX according to IBM documentation. Signed-off-by: David Michael Signed-off-by: Junio C Hamano --- f51140c2470b50bcaff63b850f5e258c23d5853d diff --git a/git-compat-util.h b/git-compat-util.h index f587749b7c..bf3a053a26 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -750,7 +750,7 @@ void git_qsort(void *base, size_t nmemb, size_t size, #endif #endif -#if defined(__GNUC__) || (_MSC_VER >= 1400) +#if defined(__GNUC__) || (_MSC_VER >= 1400) || defined(__C99_MACRO_WITH_VA_ARGS) #define HAVE_VARIADIC_MACROS 1 #endif