From 294f1a2ccb6abb2a079e5026afb49e0eb60d866d Mon Sep 17 00:00:00 2001 From: Andras Tantos Date: Mon, 4 Mar 2019 15:33:49 -0800 Subject: [PATCH] Ops, missed a file: config file to support UNICOS. --- platform-configs/config.unicos | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 platform-configs/config.unicos diff --git a/platform-configs/config.unicos b/platform-configs/config.unicos new file mode 100755 index 0000000..8523d3c --- /dev/null +++ b/platform-configs/config.unicos @@ -0,0 +1,30 @@ +#! /bin/sh +# A script to store configuration variables for Mosaic's external +# software packages +# +# In all cases configure will check the dir you supply for all libs and +# header files as well the lib and include subdirectories of that directory. +# So if you do things right and install everything in a place like +# /usr/local/include and /usr/local/lib +# you can just enter /usr/local (the default) for every field. +# +# Where to find jpeg stuff +jpegdir=/xdev/mosaic/libjpeg/linux + +# Where to find libz (don't need any headers) +zdir=/xdev/mosaic/libpng/linux + +# Where to find png stuff +pngdir=/xdev/mosaic/libpng/linux + +# Where to find wais stuff +waisdir=/xdev/mosaic/freeWAIS/linux + +# Where to find hdf stuff +hdfdir= + +# Use DTM? (yes or no) +with_dtm=no + +echo ./configure --with-jpegdir=$jpegdir --with-zdir=${zdir} --with-pngdir=$pngdir --with-wais=$waisdir --with-hdfdir=$hdfdir --enable-dtm=$with_dtm $* +./configure --with-jpegdir=$jpegdir --with-zdir=${zdir} --with-pngdir=$pngdir --with-wais=$waisdir --with-hdfdir=$hdfdir --enable-dtm=$with_dtm $*