diff options
| author | Jörg Frings-Fürst <jff@merkur> | 2014-05-18 16:08:14 +0200 | 
|---|---|---|
| committer | Jörg Frings-Fürst <jff@merkur> | 2014-05-18 16:08:14 +0200 | 
| commit | a15cf65c44d5c224169c32ef5495b68c758134b7 (patch) | |
| tree | 3419f58fc8e1b315ba8171910ee044c5d467c162 /libxsd-frontend/build/import/libxerces-c/configure | |
Imported Upstream version 3.3.0.2upstream/3.3.0.2
Diffstat (limited to 'libxsd-frontend/build/import/libxerces-c/configure')
| -rwxr-xr-x | libxsd-frontend/build/import/libxerces-c/configure | 73 | 
1 files changed, 73 insertions, 0 deletions
| diff --git a/libxsd-frontend/build/import/libxerces-c/configure b/libxsd-frontend/build/import/libxerces-c/configure new file mode 100755 index 0000000..26e56a7 --- /dev/null +++ b/libxsd-frontend/build/import/libxerces-c/configure @@ -0,0 +1,73 @@ +#! /usr/bin/env bash + +# file      : build/import/libxerces-c/configure +# author    : Boris Kolpackov <boris@kolpackov.net> +# copyright : Copyright (c) 2005-2009 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 'libxerces-c' for '$project_name'." +$echo + +$echo +$echo "Would you like to configure dependency on the installed version" +$echo "of 'libxerces-c' as opposed to the development build?" +$echo + +installed=`read_y_n y` + +path= +type= + +if [ "$installed" = "n" ]; then + +  version= + +  while [ -z "$version" ]; do + +    $echo +    $echo "Please enter the 'libxerces-c' root directory." +    $echo + +    root=`read_path --directory --exist` + +    version=`sed -e 's/^VER=\([^_]*\)_\([^_]*\)_\([^_]*\)[ ]*$/\1.\2.\3/' \ +-e t -e d $root/version.incl 2>/dev/null` + +    if [ $? != 0 -o -z "$version" ]; then + +      version= +      echo "Unable to read version information from $root/version.incl" +    fi +  done + +  $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 libxerces_c_installed := $installed   >$1 + +if [ "$installed" = "n" ]; then + +  echo libxerces_c_root    := $root    >>$1 +  echo libxerces_c_type    := $type    >>$1 +  echo libxerces_c_version := $version >>$1 + +fi | 
