diff options
| author | Will Andrews <will@FreeBSD.org> | 2001-03-10 20:32:33 +0000 |
|---|---|---|
| committer | Will Andrews <will@FreeBSD.org> | 2001-03-10 20:32:33 +0000 |
| commit | cca71f50d225f7829cd5f1539338fa678225bd91 (patch) | |
| tree | efa61cf749d57bdf40c5cb6e2fd2dd93fbcb7020 /databases/firebird-devel/scripts/pre-build | |
| parent | 7b27d09705c2d09a78a107a04ce8d384d51536ab (diff) | |
Add firebird 0.9, the open-source InterBase(tm) 6.0 spin-off
(Classic version).
PR: 24313
Submitted by: Geoffrey C. Speicher <geoff@sea-incorporated.com>
Diffstat (limited to 'databases/firebird-devel/scripts/pre-build')
| -rw-r--r-- | databases/firebird-devel/scripts/pre-build | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/databases/firebird-devel/scripts/pre-build b/databases/firebird-devel/scripts/pre-build new file mode 100644 index 000000000000..6605df7770fd --- /dev/null +++ b/databases/firebird-devel/scripts/pre-build @@ -0,0 +1,15 @@ +#!/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 + |
