summaryrefslogtreecommitdiff
path: root/databases/firebird2-server/scripts/pre-build
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2001-09-16 01:02:46 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2001-09-16 01:02:46 +0000
commitdb3dca6dbd32fe6ea3d51bc037e6f9cdc66c343b (patch)
tree29d590ca0bc9e66d81bc3218a0684c2daf9d4a68 /databases/firebird2-server/scripts/pre-build
parentFix compilation problems. (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_4_0'.release/4.4.0
Notes
Notes: svn path=/head/; revision=47856 svn path=/tags/RELEASE_4_4_0/; revision=47857; tag=release/4.4.0
Diffstat (limited to 'databases/firebird2-server/scripts/pre-build')
-rw-r--r--databases/firebird2-server/scripts/pre-build15
1 files changed, 0 insertions, 15 deletions
diff --git a/databases/firebird2-server/scripts/pre-build b/databases/firebird2-server/scripts/pre-build
deleted file mode 100644
index 6605df7770fd..000000000000
--- a/databases/firebird2-server/scripts/pre-build
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-GDS_LOCK_MGR=`ps ax |grep gds_lock_mgr |grep -v grep`;
-
-if [ "$GDS_LOCK_MGR" != "" ]; then
- echo "It appears you have a gds_lock_manager already running.";
- echo;
- echo "You must cease all InterBase operations to build this port.";
- echo "Make sure nobody is connected to any databases, then use";
- echo "'gds_drop -a' and manually verify (with ipcs) that the";
- echo "semaphores were removed.";
- exit 1;
-fi
-exit 0
-