summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2008-10-31 14:27:54 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2008-10-31 14:27:54 (GMT)
commit27d42dfae539b401a2fc06d99df93cef83b8923f (patch)
tree68a355942df1924a45c2e9b4c04b296c48114cc6 /config
parent752627e424db0fb70f3c707e8829bb4cb9851545 (diff)
downloadhdf5-27d42dfae539b401a2fc06d99df93cef83b8923f.zip
hdf5-27d42dfae539b401a2fc06d99df93cef83b8923f.tar.gz
hdf5-27d42dfae539b401a2fc06d99df93cef83b8923f.tar.bz2
[svn-r16008] Maintenance: Updated compilers and system information for Mac Intel in
RELEASE.txt Modified config file to disable shared libraries only when Fortran is enabled. Platforms tested: pahra (Mac Intel 10.5.4)
Diffstat (limited to 'config')
-rw-r--r--config/apple26
1 files changed, 9 insertions, 17 deletions
diff --git a/config/apple b/config/apple
index 14504bb..7ff667c 100644
--- a/config/apple
+++ b/config/apple
@@ -31,21 +31,9 @@ fi
# The default Fortran 90 compiler
if test "X-" = "X-$FC"; then
- # Assume Absoft compiler
- FC=xlf
- FC_BASENAME=xlf
- else
-
- # Neither xlf nor f95 have a working "version" command.
- # If FC is set, try to guess which one is being used by examining
- # the last element in the path to the compiler.
-
- TEMP_BASENAME=`basename $FC`
- if test "xlf" = "${TEMP_BASENAME}"; then
- FC_BASENAME=xlf
- else
- FC_BASENAME=f95
- fi
+ # Assume G95 compiler
+ FC=g95
+ FC_BASENAME=g95
fi
case $FC_BASENAME in
@@ -72,10 +60,14 @@ case $FC_BASENAME in
PROFILE_FCFLAGS="-g -pg"
f9x_flags_set=yes
-# f95 doesn't support shared libraries
- echo ' warning: shared libraries are not supported for f95!'
+# Fortran doesn't support shared libraries
+# Works with static executable only.
+if test "X-" != "X-$enable_fortran"; then
+ echo ' warning: shared libraries are not supported with Fortran'
echo ' disabling shared libraries'
enable_shared="no"
+fi
+
;;
esac