summaryrefslogtreecommitdiff
path: root/benchmarks/super-smack
diff options
context:
space:
mode:
authorIon-Mihai Tetcu <itetcu@FreeBSD.org>2009-06-10 07:59:53 +0000
committerIon-Mihai Tetcu <itetcu@FreeBSD.org>2009-06-10 07:59:53 +0000
commit0b7cd1cd84de6daec8e2761e5e2dbe168b76104c (patch)
tree5c0f5008e3ab4eeef8341a45dd5e736565ab7bf2 /benchmarks/super-smack
parent- Fix build for SBCL. (diff)
Fix build with custom LOCALBASE
Submitted by: Sahil Tandon Reported by: QATty Approved by: portmgr (itetcu@) No cookie for: maintainer
Notes
Notes: svn path=/head/; revision=235536
Diffstat (limited to 'benchmarks/super-smack')
-rw-r--r--benchmarks/super-smack/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/benchmarks/super-smack/Makefile b/benchmarks/super-smack/Makefile
index 5617f98b6bfe..df4818fd4bb6 100644
--- a/benchmarks/super-smack/Makefile
+++ b/benchmarks/super-smack/Makefile
@@ -26,12 +26,16 @@ OPTIONS= MYSQL "Enable MySQL support" on \
.if !defined(WITHOUT_MYSQL)
USE_MYSQL= yes
-CONFIGURE_ARGS+= --with-mysql
+CONFIGURE_ARGS+=--with-mysql \
+ --with-mysql-include=${LOCALBASE}/include/mysql \
+ --with-mysql-lib=${LOCALBASE}/lib/mysql
.endif
.if defined(WITH_POSTGRESQL)
USE_PGSQL= yes
-CONFIGURE_ARGS+= --with-pgsql
+CONFIGURE_ARGS+=--with-pgsql \
+ --with-pgsql-include=${LOCALBASE}/include
+ --with-pgsql-lib=${LOCALBASE}/lib
.endif
.if !defined(NOPORTDOCS)