mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[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:
parent
4df7c41311
commit
2bfadd8235
8
c++/configure
vendored
8
c++/configure
vendored
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user