From 46fc1c393916509cca055b4e13a07930c51d1ec5 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 18 Aug 2010 14:54:19 +0200 Subject: Add stub for multi-threaded version of MySQL client library --- libmysqlclient_r/configure | 58 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100755 libmysqlclient_r/configure (limited to 'libmysqlclient_r/configure') diff --git a/libmysqlclient_r/configure b/libmysqlclient_r/configure new file mode 100755 index 0000000..d3d399a --- /dev/null +++ b/libmysqlclient_r/configure @@ -0,0 +1,58 @@ +#! /usr/bin/env bash + +# file : build/import/libmysqlclient_r/configure +# author : Boris Kolpackov +# copyright : Copyright (c) 2009-2010 Boris Kolpackov +# license : GNU GPL v2; see accompanying LICENSE file + + +# $1 - out config file +# +# bld_root - build root +# project_name - project name +# + +source $bld_root/dialog.bash + + +$echo +$echo "Configuring external dependency on 'MySQL library' for '$project_name'." +$echo + +$echo +$echo "Would you like to configure dependency on the installed version" +$echo "of 'MySQL library' as opposed to the development build?" +$echo + +installed=`read_y_n y` + +path= +type= + +if [ "$installed" = "n" ]; then + + $echo + $echo "Please enter the 'MySQL' root directory." + $echo + + root=`read_path --directory --exist` + + $echo + $echo "Please select the library type you would like to use:" + $echo + $echo "(1) archive" + $echo "(2) shared object" + $echo + + type=`read_option "archive shared" "shared"` + +fi + +echo libmysqlclient_r_installed := $installed >$1 + +if [ "$installed" = "n" ]; then + + echo libmysqlclient_r_root := $root >>$1 + echo libmysqlclient_r_type := $type >>$1 + +fi -- cgit v1.1