From 09a4749a314eb5cdbef55d5e87ba229353de2c26 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 5 Sep 2006 04:23:11 +0000 Subject: r18058: we don't actually need __VA_ARGS__ yet (its another C99 feature which I don't think we use anywhere) (This used to be commit bac8d5ce28e86b703a917902f44588746d7e8290) --- source4/lib/replace/config.m4 | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'source4/lib/replace/config.m4') diff --git a/source4/lib/replace/config.m4 b/source4/lib/replace/config.m4 index 0a8e4448b0..994cd24866 100644 --- a/source4/lib/replace/config.m4 +++ b/source4/lib/replace/config.m4 @@ -185,10 +185,11 @@ AC_CHECK_TYPE(comparison_fn_t, AC_CHECK_FUNCS(timegm strnlen setenv) AC_CHECK_FUNCS(strtoull __strtoull strtouq strtoll __strtoll strtoq) -AC_TRY_CPP([ -#define eprintf(...) fprintf(stderr, __VA_ARGS__) -eprintf("bla", "bar"); -], [], [AC_MSG_ERROR([__VA_ARGS__ is required])]) +# this test disabled as we don't actually need __VA_ARGS__ yet +# AC_TRY_CPP([ +# #define eprintf(...) fprintf(stderr, __VA_ARGS__) +# eprintf("bla", "bar"); +# ], [], [AC_MSG_ERROR([__VA_ARGS__ is required])]) # Check prerequisites AC_CHECK_FUNCS([memset printf syslog], [], -- cgit