summaryrefslogtreecommitdiffstats
path: root/c++/configure
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2005-01-12 17:52:11 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2005-01-12 17:52:11 (GMT)
commit6b0c4026093e1cabf574b090927a5d1d2c32761c (patch)
tree4958c675b5508c70cb534e574ed4015c81d388e8 /c++/configure
parent41fc9d427d007cdaf6bad150bd376ed655614be3 (diff)
downloadhdf5-6b0c4026093e1cabf574b090927a5d1d2c32761c.zip
hdf5-6b0c4026093e1cabf574b090927a5d1d2c32761c.tar.gz
hdf5-6b0c4026093e1cabf574b090927a5d1d2c32761c.tar.bz2
[svn-r9812] Purpose: Bug fix
Description: Confiure generated libhdf5.settings files in fortran/src and c++/src directories. File in the fortran/src directory was not installed; file in the c++/src directory was intalled As a result, libhdf5.settings from the src directory with the C settings and configuration summary was blown away. Also some temporary files were not cleaned in c++ directories. Solution: Modifed configure.in files to create fortran/src/libhdf5_fortran.settings and c++/src/libhdf5_cpp.settings files Ran autoconf on eirene to generate new configure files. Modified Makefile.in files to install *setting files. Note: I don't like the solution since *setting files are messy and libhdf5_cpp.settings lacks some information (there is no corresponding *.in file in the c++/src directory). Since we are moving to 1.8 anyway, I don't want to spend too much time on it, but we definitely should look carefully at those files and check that they are ok in 1.8. Platforms tested: eirene, cobalt, arabica Misc. update:
Diffstat (limited to 'c++/configure')
-rwxr-xr-xc++/configure6
1 files changed, 3 insertions, 3 deletions
diff --git a/c++/configure b/c++/configure
index 355241c..75021d4 100755
--- a/c++/configure
+++ b/c++/configure
@@ -10546,17 +10546,17 @@ fi
PRINT_PLAIN() {
echo $ECHO_N "$1$ECHO_C"
- echo $ECHO_N "$1$ECHO_C" 1>>src/libhdf5.settings
+ echo $ECHO_N "$1$ECHO_C" 1>>src/libhdf5_cpp.settings
}
PRINT_N() {
echo $ECHO_N "$1: $ECHO_C"
- echo $ECHO_N "$1: $ECHO_C" 1>>src/libhdf5.settings
+ echo $ECHO_N "$1: $ECHO_C" 1>>src/libhdf5_cpp.settings
}
PRINT() {
echo "$1"
- echo "$1" 1>>src/libhdf5.settings
+ echo "$1" 1>>src/libhdf5_cpp.settings
}
IF_YES_NO() {