summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-11-25 15:16:15 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-11-25 15:16:15 +0200
commit4144c7d8cbbff0c010cef79ea6bfe7a47e37b0f3 (patch)
tree0e930f8175ce036c23f0042355459b88aeaeed57
parentb6a2cf0054dd6639bfb72fd472a60cbf3ad53b7a (diff)
Add -<db>-options and -<db>-test-options to dist.sh script
-rwxr-xr-xdist.sh72
1 files changed, 64 insertions, 8 deletions
diff --git a/dist.sh b/dist.sh
index 5bd548d..9544939 100755
--- a/dist.sh
+++ b/dist.sh
@@ -9,6 +9,8 @@
# -odb <odb-compiler-path>
# -cxx <c++-compiler>
# -cxxp <g++-plugin-compiler>
+# -<db>-options <options>
+# -<db>-test-options <options>
#
trap 'exit 1' ERR
@@ -49,9 +51,13 @@ cxxp=g++-4.5
CXXFLAGS="-W -Wall -Wno-unknown-pragmas"
mysql_options=
+mysql_test_options=
sqlite_options=
+sqlite_test_options=
pgsql_options=
-oracle_options="--with-oracle-host=localhost --with-oracle-service=xe"
+pgsql_test_option=
+oracle_options=
+oracle_tests_options=
while [ $# -gt 0 ]; do
case $1 in
@@ -88,6 +94,46 @@ while [ $# -gt 0 ]; do
cxxp=$1
shift
;;
+ -mysql-options)
+ shift
+ mysql_options=$1
+ shift
+ ;;
+ -mysql-test-options)
+ shift
+ mysql_test_options=$1
+ shift
+ ;;
+ -sqlite-options)
+ shift
+ sqlite_options=$1
+ shift
+ ;;
+ -sqlite-test-options)
+ shift
+ sqlite_test_options=$1
+ shift
+ ;;
+ -pgsql-options)
+ shift
+ pgsql_options=$1
+ shift
+ ;;
+ -pgsql-test-options)
+ shift
+ pgsql_test_options=$1
+ shift
+ ;;
+ -oracle-options)
+ shift
+ oracle_options=$1
+ shift
+ ;;
+ -oracle-test-options)
+ shift
+ oracle_test_options=$1
+ shift
+ ;;
*)
error "unknown option: $1"
exit 1
@@ -199,8 +245,9 @@ cd $out_root/libodb-oracle
if [ $rebuild = y ]; then
./bootstrap
./configure --with-libodb=../libodb \
- --with-oci="/usr/lib/oracle/instantclient/10.2.0.3" \
- CXX=$cxx CXXFLAGS="$CXXFLAGS"
+ CXX=$cxx \
+ CXXFLAGS="$CXXFLAGS" \
+ $oracle_options
fi
make -j 8
@@ -221,7 +268,10 @@ cd $out_root/libodb-pgsql
if [ $rebuild = y ]; then
./bootstrap
- ./configure --with-libodb=../libodb CXX=$cxx CXXFLAGS="$CXXFLAGS"
+ ./configure --with-libodb=../libodb \
+ CXX=$cxx \
+ CXXFLAGS="$CXXFLAGS" \
+ $pgsql_options
fi
make -j 8
@@ -242,7 +292,10 @@ cd $out_root/libodb-sqlite
if [ $rebuild = y ]; then
./bootstrap
- ./configure --with-libodb=../libodb CXX=$cxx CXXFLAGS="$CXXFLAGS"
+ ./configure --with-libodb=../libodb \
+ CXX=$cxx \
+ CXXFLAGS="$CXXFLAGS" \
+ $sqlite_options
fi
make -j 8
@@ -263,7 +316,10 @@ cd $out_root/libodb-mysql
if [ $rebuild = y ]; then
./bootstrap
- ./configure --with-libodb=../libodb CXX=$cxx CXXFLAGS="$CXXFLAGS"
+ ./configure --with-libodb=../libodb \
+ CXX=$cxx \
+ CXXFLAGS="$CXXFLAGS" \
+ $mysql_options
fi
make -j 8
@@ -336,7 +392,7 @@ for d in $db; do
mkdir -p $out_root/odb-tests-$d
cd $out_root/odb-tests-$d
- optvar=${d}_options
+ optvar=${d}_test_options
if [ $rebuild = y ]; then
../odb-tests/configure \
@@ -387,7 +443,7 @@ for d in $db; do
mkdir -p $out_root/odb-examples-$d
cd $out_root/odb-examples-$d
- optvar=${d}_options
+ optvar=${d}_test_options
if [ $rebuild = y ]; then
../odb-examples/configure \