diff options
author | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2009-06-10 07:59:53 +0000 |
---|---|---|
committer | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2009-06-10 07:59:53 +0000 |
commit | 0b7cd1cd84de6daec8e2761e5e2dbe168b76104c (patch) | |
tree | 5c0f5008e3ab4eeef8341a45dd5e736565ab7bf2 /benchmarks/super-smack | |
parent | 2c8f7c21eefdd8c5c803b4078301c5195c0fe9ea (diff) |
Notes
Diffstat (limited to 'benchmarks/super-smack')
-rw-r--r-- | benchmarks/super-smack/Makefile | 8 |
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) |