From 2bfadd82351ea5067caf485ee17d6cb2f850104b Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Wed, 19 Dec 2001 16:57:24 -0500 Subject: [svn-r4744] Purpose: Bug Fix Description: There were weird "throw()"s which were being placed into the configure script. Some C++ compilers were barfing on this syntax (which was akin to "extern int exit(int) throw ();" wonder why?). Solution: Ran a different autoconf on the configure file which I'd downloaded from ftp.gnu.org. It doesn't have those "throw()"s anymore Platforms tested: Linux --- c++/configure | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/c++/configure b/c++/configure index 976ca4f..d887bb6 100755 --- a/c++/configure +++ b/c++/configure @@ -1903,7 +1903,7 @@ else #line 1904 "configure" #include "confdefs.h" #ifdef __cplusplus -extern "C" void exit(int) throw(); +extern "C" void exit(int); #endif #include @@ -1938,7 +1938,7 @@ else #line 1939 "configure" #include "confdefs.h" #ifdef __cplusplus -extern "C" void exit(int) throw(); +extern "C" void exit(int); #endif #ifdef OLD_HEADER_FILENAME @@ -1987,7 +1987,7 @@ else #line 1988 "configure" #include "confdefs.h" #ifdef __cplusplus -extern "C" void exit(int) throw(); +extern "C" void exit(int); #endif int main(void) { @@ -2023,7 +2023,7 @@ else #line 2024 "configure" #include "confdefs.h" #ifdef __cplusplus -extern "C" void exit(int) throw(); +extern "C" void exit(int); #endif int main(void) { -- cgit v0.12