diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-05-04 17:17:59 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-07-06 09:52:33 +0200 |
commit | bc54b4bd56c757ec1279896b8b0639a4a9a7e0cd (patch) | |
tree | 813c462512f83e13e47d4b07c5faccd780f7b108 /build/import/libodb-pgsql/configure | |
parent | b8d88b289aca145edbf031adbe904d877d93f3ba (diff) |
Add test infrastructure for libodb-pgsql
Diffstat (limited to 'build/import/libodb-pgsql/configure')
-rwxr-xr-x | build/import/libodb-pgsql/configure | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/build/import/libodb-pgsql/configure b/build/import/libodb-pgsql/configure new file mode 100755 index 0000000..3315781 --- /dev/null +++ b/build/import/libodb-pgsql/configure @@ -0,0 +1,55 @@ +#! /usr/bin/env bash + +# file : build/import/libodb-pgsql/configure +# author : Constantin Michael <constantin@codesynthesis.com> +# copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +# license : GNU GPL v2; see accompanying LICENSE file + + +# $1 - out file +# +# bld_root - build root +# project_name - project name +# + +source $bld_root/dialog.bash + + +$echo +$echo "Configuring external dependency on 'libodb-pgsql' for '$project_name'." +$echo + +$echo +$echo "Would you like to configure dependency on the installed version" +$echo "of 'libodb-pgsql' as opposed to the development build?" +$echo + +installed=`read_y_n y` + +path= + +if [ "$installed" = "n" ]; then + +$echo +$echo "Please enter the src_root for 'libodb-pgsql'." +$echo + +src_root=`read_path --directory --exist` + +$echo +$echo "Please enter the out_root for 'libodb-pgsql'." +$echo + +out_root=`read_path --directory $src_root` + +fi + +echo libodb_pgsql_installed := $installed >$1 + +if [ "$installed" = "n" ]; then + +echo src_root := $src_root >>$1 +echo scf_root := \$\(src_root\)/build >>$1 +echo out_root := $out_root >>$1 + +fi |