From: cantor Date: Tue, 13 Nov 2007 22:46:12 +0000 (+0000) Subject: Remove duplicate STL check. X-Git-Tag: 2.4.1~277 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fopensaml2.git;a=commitdiff_plain;h=d49bcc8fc41f9d59de9c9515d0e8fb623b9e97b1 Remove duplicate STL check. git-svn-id: https://svn.middleware.georgetown.edu/cpp-opensaml2/trunk@343 fb386ef7-a10c-0410-8ebf-fd3f8e989ab0 --- diff --git a/config_win32.h b/config_win32.h index c2b7f51..919d33f 100644 --- a/config_win32.h +++ b/config_win32.h @@ -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 header file. */ /* #undef HAVE_INTTYPES_H */ diff --git a/configure.ac b/configure.ac index bf53cbf..cbb03e6 100644 --- a/configure.ac +++ b/configure.ac @@ -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 ], - [std::basic_string 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=""