[llvm-commits] CVS: llvm/autoconf/acinclude.m4

Brian Gaeke gaeke at cs.uiuc.edu
Mon Feb 23 15:13:00 PST 2004


Changes in directory llvm/autoconf:

acinclude.m4 updated: 1.4 -> 1.5

---
Log message:

Remove check for slist


---
Diffs of the changes:  (+0 -31)

Index: llvm/autoconf/acinclude.m4
diff -u llvm/autoconf/acinclude.m4:1.4 llvm/autoconf/acinclude.m4:1.5
--- llvm/autoconf/acinclude.m4:1.4	Mon Feb 23 12:56:03 2004
+++ llvm/autoconf/acinclude.m4	Mon Feb 23 15:12:44 2004
@@ -6080,37 +6080,6 @@
 AC_SUBST(HAVE_FWD_ITERATOR)])
 
 #
-# Check for slist extension.  This is from
-# http://www.gnu.org/software/ac-archive/htmldoc/ac_cxx_have_ext_slist.html
-#
-AC_DEFUN([AC_CXX_HAVE_EXT_SLIST],
-[AC_CACHE_CHECK(whether the compiler has ext/slist,
-ac_cv_cxx_have_ext_slist,
-[AC_REQUIRE([AC_CXX_NAMESPACES])
-  AC_LANG_SAVE
-  AC_LANG_CPLUSPLUS
-  AC_TRY_COMPILE([#include <ext/slist>
-#ifdef HAVE_NAMESPACES
-using namespace std;
-#endif],[slist<int> s; return 0;],
-  ac_cv_cxx_have_ext_slist=std, ac_cv_cxx_have_ext_slist=no)
-  AC_TRY_COMPILE([#include <ext/slist>
-#ifdef HAVE_NAMESPACES
-using namespace __gnu_cxx;
-#endif],[slist<int> s; return 0;],
-  ac_cv_cxx_have_ext_slist=gnu, ac_cv_cxx_have_ext_slist=no)
-
-  AC_LANG_RESTORE
-])
-if test "$ac_cv_cxx_have_ext_slist" = std; then
-   AC_DEFINE(HAVE_EXT_SLIST,std,[define if the compiler has ext/slist])
-fi
-if test "$ac_cv_cxx_have_ext_slist" = gnu; then
-   AC_DEFINE(HAVE_EXT_SLIST,gnu,[define if the compiler has ext/slist])
-fi
-])
-
-#
 # Check for FLEX.  This is modified from
 # http://www.gnu.org/software/ac-archive/htmldoc/ac_cxx_namespaces.html
 #





More information about the llvm-commits mailing list