diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-12-12 02:08:52 +0800 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-12-12 02:08:52 +0800 |
commit | b5482324dcf6b062151cc203cef1561f8923c859 (patch) | |
tree | ac2afa8997fbb76350bd6fad85df12e98e0b3da5 /databases/libmemcached/Makefile | |
parent | 667b4f4d18ac09226dc683a91597de9b41837f21 (diff) | |
download | freebsd-ports-gnome-b5482324dcf6b062151cc203cef1561f8923c859.tar.gz freebsd-ports-gnome-b5482324dcf6b062151cc203cef1561f8923c859.tar.zst freebsd-ports-gnome-b5482324dcf6b062151cc203cef1561f8923c859.zip |
In preparation for making libtool generate libraries with a sane name, fix all
LIB_DEPENDS in databases
Diffstat (limited to 'databases/libmemcached/Makefile')
-rw-r--r-- | databases/libmemcached/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/libmemcached/Makefile b/databases/libmemcached/Makefile index cac9f657ffa3..5f8ac5b79062 100644 --- a/databases/libmemcached/Makefile +++ b/databases/libmemcached/Makefile @@ -9,8 +9,8 @@ MASTER_SITES= http://launchpad.net/${PORTNAME}/1.0/${PORTVERSION}/+download/ MAINTAINER= m.tsatsenko@gmail.com COMMENT= C and C++ client library to the memcached server -LIB_DEPENDS?= execinfo.1:${PORTSDIR}/devel/libexecinfo \ - event-1.4.4:${PORTSDIR}/devel/libevent +LIB_DEPENDS?= libexecinfo.so:${PORTSDIR}/devel/libexecinfo \ + libevent-1.4.so:${PORTSDIR}/devel/libevent FETCH_ARGS?= -pRr USES= gmake pathfix pkgconfig @@ -24,7 +24,7 @@ NO_STAGE= yes .include <bsd.port.options.mk> .if exists(${LOCALBASE}/lib/libsasl.so.3) -LIB_DEPENDS+= sasl2.3:${PORTSDIR}/security/cyrus-sasl2 +LIB_DEPENDS+= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 .endif .if !defined(NO_INSTALL_MANPAGES) |