diff options
author | Vincent Batts <vbatts@hashbangbash.com> | 2022-04-19 18:08:36 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-04-24 01:47:20 +0700 |
commit | 70083bd01bbede701066f4c19346eed8bd5a37cf (patch) | |
tree | 4df33761c145723d93510e6e02578f0f8de29048 /libraries/libdbi-drivers | |
parent | 156bc869c0cf8e0c82519c2d4cde1ff3ea66074a (diff) | |
download | slackbuilds-70083bd01bbede701066f4c19346eed8bd5a37cf.tar.gz |
libraries/libdbi-drivers: fixup the postgres flags
Reported-by: T. Gessner <gessnert@usa.net>
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/libdbi-drivers')
-rw-r--r-- | libraries/libdbi-drivers/README | 2 | ||||
-rw-r--r-- | libraries/libdbi-drivers/libdbi-drivers.SlackBuild | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libraries/libdbi-drivers/README b/libraries/libdbi-drivers/README index e4a1b41c6a..1693b1baac 100644 --- a/libraries/libdbi-drivers/README +++ b/libraries/libdbi-drivers/README @@ -2,7 +2,7 @@ The libdbi-drivers project maintains drivers for the libdbi database abstraction layer written in C. Drivers are distributed separately from the library itself. -This includes the drivers for mysql and sqlite by default. +This includes the drivers for mysql and sqlite by default. If the optional dependecy postgresql is installed and the PGSQL="true" variable is set, then driver for it will be built as well. diff --git a/libraries/libdbi-drivers/libdbi-drivers.SlackBuild b/libraries/libdbi-drivers/libdbi-drivers.SlackBuild index af4b1817a4..d9e87c452e 100644 --- a/libraries/libdbi-drivers/libdbi-drivers.SlackBuild +++ b/libraries/libdbi-drivers/libdbi-drivers.SlackBuild @@ -8,7 +8,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=libdbi-drivers VERSION=${VERSION:-0.9.0} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -52,7 +52,7 @@ else fi if [ "$PGSQL" = "true" ] ; then - OPT_ARGS=" --with-pgsql --with-pgsql-dir=/usr/lib${LIBDIRSUFFIX}/pgsql " + OPT_ARGS=" --with-pgsql" fi set -e |