Fixed git command line in git-extract.sh for new 1.6.0.x behaviour
[barry.git] / configure-barry.sh
blobf1c412af42c7e6e4973a1672eca7cee6066321ce
1 #!/bin/sh
3 CHOICE="system"
5 #export CXXFLAGS="-Wall -Werror -pedantic -O0 -g -pg"
6 export CXXFLAGS="-Wall -Werror -pedantic -O0 -g"
7 #export CXX="g++-3.3"
8 #export CXX="g++-3.4"
9 #export CXX="g++-4.1"
10 #export CXX="/home/cdfrey/software/gcc/rootdir-4.3.0/bin/g++"
12 export CC="ccache gcc"
13 export CXX="ccache g++"
15 #export BOOSTOPT=""
16 #export BOOSTOPT="--with-boost"
17 #export BOOSTOPT="--with-boost=/home/cdfrey/software/boost/rootdir-gcc-3.3"
18 export BOOSTOPT="--with-boost=/home/cdfrey/software/boost/rootdir-gcc-4.1"
20 if [ -n "$1" ] ; then
21 CHOICE="$1"
24 if [ "$CHOICE" = "devel" ] ; then
25 echo "Configuring for: devel"
26 ./configure \
27 --prefix=/home/cdfrey/Contract/netdirect/syncberry/cvs/barry1/rootdir \
28 --with-libusb=/home/cdfrey/Contract/netdirect/syncberry/cvs/external/rootdir/libusb \
29 $BOOSTOPT
33 if [ "$CHOICE" = "system" ] ; then
34 echo "Configuring for: system"
35 ./configure \
36 --prefix=/home/cdfrey/Contract/netdirect/syncberry/cvs/barry1/rootdir \
37 $BOOSTOPT
41 if [ "$CHOICE" = "stable" ] ; then
42 echo "Configuring for: stable"
43 ./configure \
44 --prefix=/home/cdfrey/Contract/netdirect/syncberry/cvs/barry1/rootdir \
45 --with-libusb=/home/cdfrey/Contract/netdirect/syncberry/cvs/external/rootdir/libusb-stable \
46 $BOOSTOPT