summaryrefslogtreecommitdiff
path: root/databases/firebird-devel/files/boot.freebsd
diff options
context:
space:
mode:
Diffstat (limited to 'databases/firebird-devel/files/boot.freebsd')
-rw-r--r--databases/firebird-devel/files/boot.freebsd32
1 files changed, 0 insertions, 32 deletions
diff --git a/databases/firebird-devel/files/boot.freebsd b/databases/firebird-devel/files/boot.freebsd
deleted file mode 100644
index df80d2884076..000000000000
--- a/databases/firebird-devel/files/boot.freebsd
+++ /dev/null
@@ -1,32 +0,0 @@
-#! /bin/sh
-#
-# $Id: boot.freebsd,v 1.1 2000/09/29 16:24:25 tom Exp tom $
-#
-# Contributor(s):
-#
-# Tom Coleman TMC Systems <tcoleman@autowares.com>
-# Geoff Speicher <geoff@sea-incorporated.com>
-#
-CWD=`pwd`;export CWD
-INTERBASE=$CWD/interbase
-LD_LIBRARY_PATH=$INTERBASE/lib
-PATH=$PATH:$INTERBASE/bin:.
-echo INTERBASE=$INTERBASE
-echo LD_LIBRARY_PATH=$LD_LIBRARY_PATH
-export LD_LIBRARY_PATH
-if [ -z "$REFDBPATH" ];then
- echo "REFDBPATH not defined"
- REFDBPATH=`dirname $CWD`/refDatabases; export REFDBPATH
-fi
-echo "REFDBPATH="$REFDBPATH
-if [ "$1" = "SUPER" ]; then
- echo "Building SUPER"
- make -f make.freebsd super_firebird
-else
- echo "Building CLASSIC"
- if [ "$#" -gt 0 ]; then
- make -f make.freebsd $1
- else
- make -f make.freebsd
- fi
-fi