diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2008-02-03 20:57:27 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2008-02-03 20:57:27 +0000 |
commit | c7e391f1d6412b4883cf670d8c6d4ecfaeaf1e11 (patch) | |
tree | fb96a2e1709ef5e3e3a4fae8734416a894c1a4d6 /textproc/refdb | |
parent | 10e7c8f4159d78dfd8c58b37da8d6f55b9aed4e7 (diff) | |
download | ports-c7e391f1d6412b4883cf670d8c6d4ecfaeaf1e11.tar.gz ports-c7e391f1d6412b4883cf670d8c6d4ecfaeaf1e11.zip |
Notes
Diffstat (limited to 'textproc/refdb')
-rw-r--r-- | textproc/refdb/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/textproc/refdb/Makefile b/textproc/refdb/Makefile index 1913ce649e57..0afaaa68e9d4 100644 --- a/textproc/refdb/Makefile +++ b/textproc/refdb/Makefile @@ -54,7 +54,7 @@ IGNORE= you must choose a back-end database .if !defined(WITHOUT_MYSQL) USE_MYSQL= yes # If libdbi-drivers has been built without MySQL driver, abort -.if exists(${LOCALBASE}/lib/dbd) && !exists(${LOCALBASE}/lib/dbd/libmysql.so) +.if exists(${LOCALBASE}/lib/dbd) && !exists(${LOCALBASE}/lib/dbd/libdbdmysql.so) IGNORE= rebuild databases/libdbi-drivers with MySQL support .elif !exists(${LOCALBASE}/lib/dbd) BUILD_DEPENDS+= ${LOCALBASE}/lib/dbd:${PORTSDIR}/databases/libdbi-drivers @@ -64,7 +64,7 @@ CONFIGURE_ARGS+= --with-db-server=mysql .elif defined(WITH_PGSQL) USE_PGSQL= yes # If libdbi-drivers has been built without PostgreSQL driver, abort -.if exists(${LOCALBASE}/lib/dbd) && !exists(${LOCALBASE}/lib/dbd/libpgsql.so) +.if exists(${LOCALBASE}/lib/dbd) && !exists(${LOCALBASE}/lib/dbd/libdbdpgsql.so) IGNORE= rebuild databases/libdbi-drivers with PostgreSQL support .elif !exists(${LOCALBASE}/lib/dbd) BUILD_DEPENDS+= ${LOCALBASE}/lib/dbd:${PORTSDIR}/databases/libdbi-drivers @@ -74,7 +74,7 @@ CONFIGURE_ARGS+= --with-db-server=pgsql .elif defined(WITH_SQLITE) LIB_DEPENDS+= sqlite3.8:${PORTSDIR}/databases/sqlite3 # If libdbi-drivers has been built without SQLite driver, abort -.if exists(${LOCALBASE}/lib/dbd) && !exists(${LOCALBASE}/lib/dbd/libsqlite.so) +.if exists(${LOCALBASE}/lib/dbd) && !exists(${LOCALBASE}/lib/dbd/libdbdsqlite.so) IGNORE= rebuild databases/libdbi-drivers with SQLite support .elif !exists(${LOCALBASE}/lib/dbd) BUILD_DEPENDS+= ${LOCALBASE}/lib/dbd:${PORTSDIR}/databases/libdbi-drivers |