No longer needed.

This commit is contained in:
Gregory Burd 2011-11-28 12:39:50 -05:00
parent db1eb122c6
commit 3e1fba24a4

View file

@ -1,30 +0,0 @@
#!/bin/bash
if [ `basename $PWD` != "c_src" ]; then
pushd c_src
fi
BASEDIR="$PWD"
WORKDIR=$BASEDIR/system
TARGETDIR=$BASEDIR/../priv
## Check for necessary tarball
if [ ! -f "db-${BDB_VERSION}.tar.gz" ]; then
echo "Could not find db tarball. Aborting..."
exit 1
fi
## Make sure target directory exists
mkdir -p $TARGETDIR
## Remove existing directories
rm -rf system db-${BDB_VERSION}
## Untar and build everything
tar -xzf db-${BDB_VERSION}.tar.gz && \
##(cd db-${BDB_VERSION} && patch -p0 < ../bdb-align.patch ) && \
(cd db-${BDB_VERSION}/build_unix && \
../dist/configure --prefix=$WORKDIR --disable-shared && make && ranlib libdb-*.a && make install) && \
rm -rf db-${BDB_VERSION}