[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
This commit is contained in:
Bill Wendling 2001-12-19 16:57:24 -05:00
parent 4df7c41311
commit 2bfadd8235

8
c++/configure vendored
View File

@ -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 <iostream>
@ -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) {