summaryrefslogtreecommitdiff
path: root/libmysqlclient_r/configure
blob: d3d399ab904d21e5dfd568653343a5cf31f258f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#! /usr/bin/env bash

# file      : build/import/libmysqlclient_r/configure
# author    : Boris Kolpackov <boris@kolpackov.net>
# 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