aboutsummaryrefslogtreecommitdiff
path: root/build/import/libpq/configure
diff options
context:
space:
mode:
Diffstat (limited to 'build/import/libpq/configure')
-rwxr-xr-xbuild/import/libpq/configure81
1 files changed, 81 insertions, 0 deletions
diff --git a/build/import/libpq/configure b/build/import/libpq/configure
new file mode 100755
index 0000000..8e2210f
--- /dev/null
+++ b/build/import/libpq/configure
@@ -0,0 +1,81 @@
+#! /usr/bin/env bash
+
+# file : build/import/libpq/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 config file
+#
+# bld_root - build root
+# project_name - project name
+#
+
+source $bld_root/dialog.bash
+
+
+$echo
+$echo "Configuring external dependency on 'PostgreSQL library' for '$project_name'."
+$echo
+
+$echo
+$echo "Would you like to configure dependency on the installed version"
+$echo "of 'PostgreSQL library' as opposed to the development build?"
+$echo
+
+installed=`read_y_n y`
+
+path=
+type=
+
+if [ "$installed" = "n" ]; then
+
+ $echo
+ $echo "Please enter the 'PostgreSQL' 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"`
+
+else
+
+ pq_libs=-lpq
+
+ if pg_config --version > /dev/null 2>&1; then
+
+ pq_cppflags=-I`pg_config --includedir`
+
+ else
+ $echo
+ $echo "Unable to discover installed 'PostgreSQL libraries' using pg_config."
+ $echo "Assuming the C++ compiler will find them automatically."
+ $echo
+
+ pq_cppflags=
+
+ fi
+
+fi
+
+echo libpq_installed := $installed >$1
+
+if [ "$installed" = "n" ]; then
+
+ echo libpq_root := $root >>$1
+ echo libpq_type := $type >>$1
+
+else
+
+ echo pq_cppflags := $pq_cppflags >>$1
+ echo pq_libs := $pq_libs >>$1
+
+fi