diff options
author | marino <marino@FreeBSD.org> | 2014-08-04 00:06:58 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2014-08-04 00:06:58 +0800 |
commit | 8bb7274332c54e1c6d7b1d185866cd8b6c0e6258 (patch) | |
tree | 79f00006ccf68a12f5e1ca2d8d9ab10acad63b94 /net-p2p | |
parent | 2e06e0f0526062ce29cb46135a0f85801c0a3b91 (diff) | |
download | freebsd-ports-gnome-8bb7274332c54e1c6d7b1d185866cd8b6c0e6258.tar.gz freebsd-ports-gnome-8bb7274332c54e1c6d7b1d185866cd8b6c0e6258.tar.zst freebsd-ports-gnome-8bb7274332c54e1c6d7b1d185866cd8b6c0e6258.zip |
Fix transmission-cli,-gtk on some platforms after openssl update
At least on some releases, transmission-cli and transmission-gtk now
need -lcypto in LDFLAGS to build. Additionally transmission-gtk needed
an update of the inotify configure argument. The latter requires a
revbump because it seems possible that it could have been built with
the bad argument somewhere.
PR: 192319
Submitted by: Ivan Klymenko
Approved by: "Just Fix It" blanket, but maintainer was in copy on PR
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/transmission-cli/Makefile | 2 | ||||
-rw-r--r-- | net-p2p/transmission-gtk/Makefile | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/net-p2p/transmission-cli/Makefile b/net-p2p/transmission-cli/Makefile index 6d7ddb5322a7..a02d1a01672a 100644 --- a/net-p2p/transmission-cli/Makefile +++ b/net-p2p/transmission-cli/Makefile @@ -42,7 +42,7 @@ USES+= gmake pkgconfig iconv USE_OPENSSL= yes GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB} +LDFLAGS+= -L${LOCALBASE}/lib -lcrypto ${ICONV_LIB} CONFIGURE_ARGS=--with-zlib=/usr \ ${EXTRA_CONF_ARGS} CONFIGURE_ENV+= OPENSSL_LIBS=${OPENSSL_LDFLAGS} diff --git a/net-p2p/transmission-gtk/Makefile b/net-p2p/transmission-gtk/Makefile index f467748c1be7..ca525bb1fbae 100644 --- a/net-p2p/transmission-gtk/Makefile +++ b/net-p2p/transmission-gtk/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PKGNAMESUFFIX= -gtk +PORTREVISION= 2 MAINTAINER= crees@FreeBSD.org COMMENT= Fast and lightweight GTK+2 BitTorrent client @@ -24,7 +25,7 @@ INSTALLS_ICONS= yes EXTRA_CONF_ARGS=--disable-cli \ --disable-daemon \ --with-gtk \ - --enable-inotify \ + --with-inotify \ --disable-mac \ --enable-nls |