summaryrefslogtreecommitdiffstats
path: root/xpa/saoconfig
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2017-10-26 16:44:17 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2017-10-26 16:44:17 (GMT)
commit79d64f400391ce81b4eda73977cb40099256b348 (patch)
tree47afaed270cf59335dbaf4eb7965eac64a02a687 /xpa/saoconfig
parent1377ae8b2142276c24d28d65865e459038984c62 (diff)
downloadblt-79d64f400391ce81b4eda73977cb40099256b348.zip
blt-79d64f400391ce81b4eda73977cb40099256b348.tar.gz
blt-79d64f400391ce81b4eda73977cb40099256b348.tar.bz2
upgrade XPA
Diffstat (limited to 'xpa/saoconfig')
-rwxr-xr-xxpa/saoconfig180
1 files changed, 0 insertions, 180 deletions
diff --git a/xpa/saoconfig b/xpa/saoconfig
deleted file mode 100755
index 4046822..0000000
--- a/xpa/saoconfig
+++ /dev/null
@@ -1,180 +0,0 @@
-#!/bin/sh
-set -x
-rm -rf ./config.cache
-
-if [ x"$1" = x ]; then
- name=`uname -n`
-else
- if [ x"$1" = x"--" ]; then
- name=`uname -n`
- else
- name="$1"
- fi
- shift
-fi
-
-if [ x"$CFLAGS" = x ]; then
- CFLAGS="-g"
- export CFLAGS
-fi
-if [ x"$LDFLAGS" = x ]; then
- LDFLAGS="-g"
- export LDFLAGS
-fi
-
-GCCFLAGS="-Wall -Wno-implicit-int"
-CF="--config-cache"
-BIT64="-m64 -mcpu=v9"
-LARGEFILE="-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
-
-# handle saord builds specially
-if [ x$name = xsaord ]; then
- SAORDPREFIX=/soft/saord
- platform=`uname`
- case $platform in
- SunOS)
- SAORDPREFIX=/soft/saord
- ;;
- esac
-fi
-
-echo "configure for: " $name
-
-case $name in
- cc)
- ./configure $CF \
- CC=cc CFLAGS="$CFLAGS" $*
- ;;
-
- gcc)
- ./configure $CF \
- CC=gcc CFLAGS="$CFLAGS $GCCFLAGS" $*
- ;;
-
-# Solaris 64bit and largefile suport
- large)
- ./configure $CF \
- --x-includes=/usr/openwin/include \
- --x-libraries=/usr/openwin/lib/sparcv9 \
- --without-tcl \
- CC=gcc CFLAGS="$CFLAGS $GCCFLAGS $BIT64 $LARGEFILE" \
- LDFLAGS="-g $BIT64 -L/usr/lib/sparcv9" $*
- ;;
-
- opt)
- ./configure $CF \
- CC=gcc CFLAGS="$CFLAGS $GCCFLAGS -O2" $*
- ;;
-
- g++)
- ./configure $CF \
- CC=g++ CFLAGS="$CFLAGS $GCCFLAGS" $*
- ;;
-
- noansi)
- ./configure $CF \
- CC=gcc CFLAGS="$CFLAGS $GCCFLAGS -DNO_ANSI_FUNC" $*
- ;;
-
- dl)
- ./configure $CF \
- --enable-dl=yes CC=gcc CFLAGS="$CFLAGS $GCCFLAGS" $*
- ;;
-
- shared)
- ./configure $CF \
- --enable-shared=yes \
- CC=gcc CFLAGS="$CFLAGS $GCCFLAGS" \
- $*
- ;;
-
- threads)
- ./configure $CF \
- --enable-threaded-xpans \
- CC=cc CFLAGS="$CFLAGS" $*
- ;;
-
- saord*)
- ./configure $CF \
- --prefix=$SAORDPREFIX \
- CC=gcc CFLAGS="$CFLAGS -O2" \
- $*
- ;;
-
- bokhara*)
- ./configure $CF \
- --prefix=${HOME} \
- CC=gcc CFLAGS="$CFLAGS $GCCFLAGS" $*
- ;;
-
- ds9*)
- ./configure $CF \
- --prefix=${HOME} \
- --enable-shared=yes \
- --with-tcl=/proj/rd/eric/saods9/lib \
- CC=gcc CFLAGS="$CFLAGS $GCCFLAGS" $*
- ;;
-
- cfa208*)
- ./configure $CF \
- --prefix=${HOME} \
- CC=gcc CFLAGS="$CFLAGS" $*
- ;;
-
- akela*|karapet*)
- ./configure $CF \
- --prefix=${HOME} \
- --enable-shared=yes \
- CC=gcc CFLAGS="$CFLAGS $GCCFLAGS" $*
- ;;
-
- ds9*)
- ./configure $CF \
- --prefix=${HOME}/eric \
- --enable-shared=yes \
- CC=gcc CFLAGS="$CFLAGS $GCCFLAGS" $*
- ;;
-
- baba*)
- ./configure $CF \
- --prefix=${HOME} \
- CC=gcc CFLAGS="$CFLAGS" $*
- ;;
-
- apple*|APPLE*)
- ./configure $CF \
- --prefix=${HOME} \
- CC=icc CFLAGS="$CFLAGS" $*
- ;;
-
- mred)
- ./configure $CF \
- --prefix=${HOME}/pub/usr/local \
- --enable-threaded-xpans \
- --without-tcl \
- CC=cc CFLAGS="$CFLAGS" $*
- ;;
-
- mocha*|Mocha*|luwak*|*Luwak*|decaf*|Decaf*|barista*|Barista*|knomad*|Knomad*)
- ./configure $CF \
- --prefix=/usr/local \
- CC=gcc CFLAGS="$CFLAGS $GCCFLAGS $LARGEFILE -O2" \
- $*
- ;;
-
- voyager*|VOYAGER*)
- ./configure $CF \
- --enable-posix_spawn --prefix=${HOME} \
- CC=gcc CFLAGS="$CFLAGS $GCCFLAGS" $*
- ;;
-
-
- kitchensink)
- ./configure --enable-shared=link --enable-threaded-xpans --with-threads $*
- ;;
-
- *)
- ./configure $CF $*
- ;;
-
-esac