From 3f224b755805cac375fecb13da08c17b188fae01 Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 21 Apr 2005 13:56:55 -0400 Subject: [PATCH] COMP: Do not do va_list hack if there is no std:: namespace. --- Source/kwsys/SystemTools.hxx.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/kwsys/SystemTools.hxx.in b/Source/kwsys/SystemTools.hxx.in index 74fce4d6c..9555af049 100644 --- a/Source/kwsys/SystemTools.hxx.in +++ b/Source/kwsys/SystemTools.hxx.in @@ -25,7 +25,7 @@ // Required for va_list #include -#ifndef va_list +#if @KWSYS_NAMESPACE@_STL_HAVE_STD && !defined(va_list) // Some compilers move va_list into the std:: namespace and there is no way to // tell that this has been done. Playing with things being included before or // after stdarg.h does not solve things because we do not have control over