Don't specify ABI versions in LIB_DEPENDS where it isn't necessary.

Approved by:  shaun (mentor)
This commit is contained in:
Matthew Seaman 2012-02-18 14:57:40 +00:00
parent 42b833790e
commit 7dd10aacc8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=291684

View File

@ -24,7 +24,7 @@ LICENSE= GPLv2
# If expat is present on the system and configure finds it, it will
# unconditionally link the output binary against it. There's no way
# of turning this off. So for consistency, make sure it's always on.
LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2
LIB_DEPENDS= expat:${PORTSDIR}/textproc/expat2
OPTIONS= MYSQL "MySQL support" on \
PGSQL "PostgreSQL support" off \
@ -76,7 +76,7 @@ CONFIGURE_ARGS+= --enable-id64
.if defined(WITH_UNIXODBC)
CONFIGURE_ARGS+= --with-unixodbc
LIB_DEPENDS+= odbc.2:${PORTSDIR}/databases/unixODBC
LIB_DEPENDS+= odbc:${PORTSDIR}/databases/unixODBC
.else
CONFIGURE_ARGS+= --without-unixodbc
.endif