summaryrefslogtreecommitdiff
path: root/benchmarks/sysbench/options.mk
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2010-05-27 10:49:07 +0000
committeradam <adam@pkgsrc.org>2010-05-27 10:49:07 +0000
commit224c1a05769f13d6dabd369234380993b38b0c74 (patch)
tree7ae02c1874a0e4783a885103918de635046a2c02 /benchmarks/sysbench/options.mk
parent7a7ea559c5e11a08122f25c255a8f178820471cb (diff)
downloadpkgsrc-224c1a05769f13d6dabd369234380993b38b0c74.tar.gz
Changes 0.4.12:
* Made forced shutdown introduced in 0.4.11 optional via the --forced-shutdown switch and off by default. Changes 0.4.11: * Added --oltp-reconnect-mode to the OLTP test. * Minor fixes to remove compiler warnings and DocBook processing on Mac OS X. * Added forced test shutdown to avoid endless execution when DB server freezes * Backport of Windows support from the 0.5 branch Changes 0.4.10: * Fixed the bug with empty --mysql-create-options * Merge two patches from Tim Cook: - use lrand48() as random() is not thread-safe on most platforms - use libumem/mtmalloc for memory allocation if available on the target platform * Got rid of some unnecessary malloc() calls in drv_mysql.c
Diffstat (limited to 'benchmarks/sysbench/options.mk')
-rw-r--r--benchmarks/sysbench/options.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/benchmarks/sysbench/options.mk b/benchmarks/sysbench/options.mk
index 7805e1f30a1..e3c6629cbb0 100644
--- a/benchmarks/sysbench/options.mk
+++ b/benchmarks/sysbench/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.3 2007/03/11 01:37:56 rmind Exp $
+# $NetBSD: options.mk,v 1.4 2010/05/27 10:49:07 adam Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.sysbench
PKG_SUPPORTED_OPTIONS+= mysql pgsql doc
@@ -6,14 +6,14 @@ PKG_SUPPORTED_OPTIONS+= mysql pgsql doc
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mmysql)
-CONFIGURE_ARGS+= --with-mysql=${BUILDLINK_PREFIX.mysql-client:Q}
+CONFIGURE_ARGS+= --with-mysql=${BUILDLINK_PREFIX.mysql-client}
. include "../../mk/mysql.buildlink3.mk"
.else
CONFIGURE_ARGS+= --without-mysql
.endif
.if !empty(PKG_OPTIONS:Mpgsql)
-CONFIGURE_ARGS+= --with-pgsql=${PGSQL_PREFIX:Q}
+CONFIGURE_ARGS+= --with-pgsql=${PGSQL_PREFIX}
. include "../../mk/pgsql.buildlink3.mk"
.else
CONFIGURE_ARGS+= --without-pgsql