summaryrefslogtreecommitdiffstats
path: root/Utilities
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2005-04-26 18:12:31 (GMT)
committerBrad King <brad.king@kitware.com>2005-04-26 18:12:31 (GMT)
commitd6d91ac89f9bce50c85cb72208e7dba64927332b (patch)
tree030467bf296c0989cb70568375a63ce2b660aa1d /Utilities
parent7b2973d92f41e953c63624bb31fea9a2e4c05884 (diff)
downloadCMake-d6d91ac89f9bce50c85cb72208e7dba64927332b.zip
CMake-d6d91ac89f9bce50c85cb72208e7dba64927332b.tar.gz
CMake-d6d91ac89f9bce50c85cb72208e7dba64927332b.tar.bz2
ENH: Removing stdio_core hack. A better work-around has been put in cmStandardIncludes.h.
Diffstat (limited to 'Utilities')
-rw-r--r--Utilities/cmxmlrpc/CMakeLists.txt6
-rw-r--r--Utilities/cmxmlrpc/internal_stdio_core.h.in5
2 files changed, 0 insertions, 11 deletions
diff --git a/Utilities/cmxmlrpc/CMakeLists.txt b/Utilities/cmxmlrpc/CMakeLists.txt
index 86a7870..f23bf97 100644
--- a/Utilities/cmxmlrpc/CMakeLists.txt
+++ b/Utilities/cmxmlrpc/CMakeLists.txt
@@ -77,12 +77,6 @@ CONFIGURE_FILE(
"${CMAKE_CURRENT_BINARY_DIR}/xmlrpc_amconfig.h"
)
-# DISABLING UNTIL A TRY-COMPILE CAN DETERMINE IF IT IS SAFE
-# See internal_stdio_core.h.in for explanation.
-#CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/internal_stdio_core.h.in
-# ${CMAKE_CURRENT_BINARY_DIR}/internal/stdio_core.h
-# @ONLY IMMEDIATE)
-
SET(xmlrpc_SRCS
#XmlRpcCpp.cpp
xmlrpc_array.c
diff --git a/Utilities/cmxmlrpc/internal_stdio_core.h.in b/Utilities/cmxmlrpc/internal_stdio_core.h.in
deleted file mode 100644
index ae5910c..0000000
--- a/Utilities/cmxmlrpc/internal_stdio_core.h.in
+++ /dev/null
@@ -1,5 +0,0 @@
-/* This is a hack to work around a bug in MIPSpro 7.4 on some SGIs.
- We need to include stdarg.h before the stdio core to avoid putting
- va_list in the std namespace and never in the global namespace. */
-#include <stdarg.h>
-#include_next <internal/stdio_core.h>