Remove duplicate STL check.
authorcantor <cantor@fb386ef7-a10c-0410-8ebf-fd3f8e989ab0>
Tue, 13 Nov 2007 22:46:12 +0000 (22:46 +0000)
committercantor <cantor@fb386ef7-a10c-0410-8ebf-fd3f8e989ab0>
Tue, 13 Nov 2007 22:46:12 +0000 (22:46 +0000)
git-svn-id: https://svn.middleware.georgetown.edu/cpp-opensaml2/trunk@343 fb386ef7-a10c-0410-8ebf-fd3f8e989ab0

config_win32.h
configure.ac

index c2b7f51..919d33f 100644 (file)
@@ -6,10 +6,6 @@
 /* Define to 1 if you have the `gmtime_r' function. */
 /* #undef HAVE_GMTIME_R */
 
-/* Define if you have an STL implementation that supports useful string
-   specialization. */
-#define HAVE_GOOD_STL 1
-
 /* Define to 1 if you have the <inttypes.h> header file. */
 /* #undef HAVE_INTTYPES_H */
 
index bf53cbf..cbb03e6 100644 (file)
@@ -1,7 +1,6 @@
 AC_PREREQ([2.50])
 AC_INIT([opensaml], [2.0], [mace-opensaml-users@internet2.edu], [saml])
 AM_CONFIG_HEADER(config.h)
-#AM_CONFIG_HEADER(saml/config_pub.h)
 AM_INIT_AUTOMAKE([opensaml], [2.0])
 
 sinclude(doxygen.m4)
@@ -241,14 +240,6 @@ AC_TRY_LINK(
     [AC_MSG_ERROR([unable to link with xmltooling library])]
     )
 
-# Does the STL in use help or screw us?
-AC_TRY_LINK(
-    [#include <string>],
-    [std::basic_string<unsigned short> foo; foo=foo+(unsigned short)65],
-    [AC_DEFINE(HAVE_GOOD_STL,1,
-        [Define if you have an STL implementation that supports useful string specialization.])],
-    )
-
 # Check for unit test support
 CXXTEST="/usr/bin/cxxtestgen.pl"
 CXXTESTFLAGS=""