summaryrefslogtreecommitdiff
path: root/build/configure
diff options
context:
space:
mode:
Diffstat (limited to 'build/configure')
-rwxr-xr-xbuild/configure34
1 files changed, 0 insertions, 34 deletions
diff --git a/build/configure b/build/configure
deleted file mode 100755
index fa05813..0000000
--- a/build/configure
+++ /dev/null
@@ -1,34 +0,0 @@
-#! /usr/bin/env bash
-
-# file : build/configure
-# 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
-$echo "configuring '$project_name'"
-$echo
-$echo
-
-$echo
-$echo "Please select the database you would like to use:"
-$echo
-$echo "(1) MySQL"
-$echo "(2) SQLite"
-$echo "(3) PostgreSQL"
-$echo "(4) Oracle"
-$echo "(5) Microsoft SQL Server"
-$echo
-
-db_id=`read_option "mysql sqlite pgsql oracle mssql"`
-
-echo "db_id := $db_id" >$1
-
-source $scf_root/$db_id/configure