From: Ralf Wildenhues Date: Fri, 17 Mar 2006 17:20:11 +0000 (+0000) Subject: * tests/tagdemo/foo.cpp, tests/tagdemo/main.cpp [ hpux ] : X-Git-Tag: release-2-1b~310 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2aa72e57d2eabe7f192aa3e117fb44984eef95be;p=thirdparty%2Flibtool.git * tests/tagdemo/foo.cpp, tests/tagdemo/main.cpp [ hpux ] : The HPPA C++ compiler has namespace support but provides no `std' namespace; just provide it with a dummy. --- diff --git a/ChangeLog b/ChangeLog index a60591f2b..40c9d10bc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2006-03-17 Ralf Wildenhues + * tests/tagdemo/foo.cpp, tests/tagdemo/main.cpp [ hpux ] : + The HPPA C++ compiler has namespace support but provides no + `std' namespace; just provide it with a dummy. + * libltdl/m4/libtool.m4 (AC_PROG_SED): Do not forget to reset IFS even in case of empty `$PATH'. diff --git a/tests/tagdemo/foo.cpp b/tests/tagdemo/foo.cpp index d3428116a..8b9801456 100644 --- a/tests/tagdemo/foo.cpp +++ b/tests/tagdemo/foo.cpp @@ -26,6 +26,7 @@ # include #endif #ifdef HAVE_NAMESPACES +namespace std { } using namespace std; #endif diff --git a/tests/tagdemo/main.cpp b/tests/tagdemo/main.cpp index 32ed0cadf..ef77847f9 100644 --- a/tests/tagdemo/main.cpp +++ b/tests/tagdemo/main.cpp @@ -29,6 +29,7 @@ # include #endif #ifdef HAVE_NAMESPACES +namespace std { } using namespace std; #endif