Build from source pulled from a specific branch on GitHub for "basho"
related work and integration of WiredTiger rather than the latest .tar.bz2 file they distribute.
This commit is contained in:
parent
57917f8bc6
commit
b47d15fa21
2 changed files with 12 additions and 6 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
set -e
|
||||
|
||||
WT_VSN=1.4.2
|
||||
WT_BRANCH=basho
|
||||
|
||||
[ `basename $PWD` != "c_src" ] && cd c_src
|
||||
|
||||
|
@ -10,19 +10,25 @@ BASEDIR="$PWD"
|
|||
|
||||
case "$1" in
|
||||
clean)
|
||||
rm -rf system wiredtiger-$WT_VSN
|
||||
rm -rf system wiredtiger
|
||||
;;
|
||||
|
||||
*)
|
||||
test -f system/lib/libwiredtiger.a && exit 0
|
||||
|
||||
tar -xjf wiredtiger-$WT_VSN.tar.bz2
|
||||
|
||||
(cd wiredtiger-$WT_VSN/build_posix && \
|
||||
if [ -d wiredtiger/.git ]; then
|
||||
(cd wiredtiger && \
|
||||
git fetch && \
|
||||
git merge origin/$WT_BRANCH)
|
||||
else
|
||||
git clone https://github.com/wiredtiger/wiredtiger.git -b $WT_BRANCH && \
|
||||
(cd wiredtiger && ./autogen.sh)
|
||||
fi
|
||||
(cd wiredtiger/build_posix && \
|
||||
../configure --with-pic \
|
||||
--enable-snappy --enable-bzip2 --enable-lz4 \
|
||||
--prefix=$BASEDIR/system && \
|
||||
make && make install)
|
||||
|
||||
;;
|
||||
esac
|
||||
|
||||
|
|
Binary file not shown.
Loading…
Reference in a new issue