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++/configure.in | |
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++/configure.in')
-rw-r--r-- | c++/configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
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 ], [ |