diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-15 16:23:21 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-15 16:23:21 (GMT) |
commit | 8d6ec211c165325b214ca6e559edc4fdfa4d21f9 (patch) | |
tree | 502760d6fd263c80f04cab858b8226c930071d3c /c++ | |
parent | 927e5beba7929b055a56b38a8c9ff843ff9b6e19 (diff) | |
download | hdf5-8d6ec211c165325b214ca6e559edc4fdfa4d21f9.zip hdf5-8d6ec211c165325b214ca6e559edc4fdfa4d21f9.tar.gz hdf5-8d6ec211c165325b214ca6e559edc4fdfa4d21f9.tar.bz2 |
[svn-r2917] Purpose:
Bug fix
Description:
Namespace wasn't being detected properly.
Solution:
Changed it to do it properly (not putting the main() function in
the namespace);
Platforms tested:
Linux
Diffstat (limited to 'c++')
-rwxr-xr-x | c++/configure | 6 | ||||
-rw-r--r-- | c++/configure.in | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/c++/configure b/c++/configure index aaf5539..1576a53 100755 --- a/c++/configure +++ b/c++/configure @@ -1832,11 +1832,11 @@ extern "C" void exit(int); using namespace std; namespace H5 { - -int main(void) { return 0; } - +int fnord; } +int main(void) { fnord = 37; return 0; } + EOF if { (eval echo configure:1842: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then diff --git a/c++/configure.in b/c++/configure.in index e56219f..575d5f8 100644 --- a/c++/configure.in +++ b/c++/configure.in @@ -229,10 +229,10 @@ AC_TRY_RUN([ using namespace std; namespace H5 { - -int main(void) { return 0; } - +int fnord; } + +int main(void) { fnord = 37; return 0; } ], [ echo yes ], [ |