summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2002-06-13 11:53:50 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2002-06-13 11:53:50 (GMT)
commit2237d52cd0eec582278e5cc4d64def359bdffd04 (patch)
treee01db35ab927618ac91cfb611d65a83bca723015 /bin
parentaaf7818a6669abd497fb0015b2b4089ea63880ef (diff)
downloadhdf5-2237d52cd0eec582278e5cc4d64def359bdffd04.zip
hdf5-2237d52cd0eec582278e5cc4d64def359bdffd04.tar.gz
hdf5-2237d52cd0eec582278e5cc4d64def359bdffd04.tar.bz2
[svn-r5623] Purpose:
It has been replaced by the more general locate_sw.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/locate_hdf468
1 files changed, 0 insertions, 68 deletions
diff --git a/bin/locate_hdf4 b/bin/locate_hdf4
deleted file mode 100755
index 0d79784..0000000
--- a/bin/locate_hdf4
+++ /dev/null
@@ -1,68 +0,0 @@
-#!/bin/sh
-# Try to locate the HDF (nicknamed hdf4) software
-# This is a hack because there is no consistent place to find
-# the valid HDF library.
-# Usage: locate_hdf5
-# It prints two strings in which the first one represents a valid
-# value for the --with-hdf=... switch and the second one is where
-# one can find the hdp command. It can be added to the $PATH.
-
-H4_SW=
-H4_BIN=
-OS=`uname -s`
-# this default is the best guess of locating hdf4 software
-h4paths_defaults="/usr/ncsa /usr/sdt /usr/local"
-
-case "$OS" in
- HP-UX)
- h4paths="/afs/ncsa/packages/hdf/HPUX_10.20"
- ;;
- IRIX)
- h4paths="/afs/ncsa/packages/hdf/4.1r3_irix"
- ;;
- IRIX64)
- case "$CC" in
- cc|"") #default cc
- abi=`cc -show_defaults 2>&1 | grep 'default abi'`
- case $abi in
- *-n32)
- h4paths="/afs/ncsa/packages/hdf/IRIX64-n32_6.5"
- ;;
- *-64)
- h4paths="/afs/ncsa/packages/hdf/IRIX64_6.5"
- ;;
- *)
- h4paths="/afs/ncsa/packages/hdf/IRIX64_6.5"
- ;;
- esac # $abi
- ;;
- *-n32)
- h4paths="/afs/ncsa/packages/hdf/IRIX64-n32_6.5"
- ;;
- *)
- h4paths="/afs/ncsa/packages/hdf/IRIX64_6.5"
- ;;
- esac
- ;;
- Linux)
- h4paths="/afs/ncsa/packages/hdf/linux"
- ;;
- OSF1)
- h4paths="/afs/ncsa/packages/hdf/OSF1_V4.0"
- ;;
- *)
- h4paths="$h4paths_defaults"
- ;;
-esac
-
-# check if the hdf4 software is actually available
-for h4 in $h4paths; do
- if [ -f $h4/lib/libdf.a -a -f $h4/include/hdf.h ]; then
- H4_SW="$h4/include,$h4/lib"
- if [ -f $h4/bin/hdp ]; then
- H4_BIN=$h4/bin
- fi
- break
- fi
-done
-echo $H4_SW $H4_BIN