diff options
author | Roman Bogorodskiy <novel@FreeBSD.org> | 2019-06-29 18:32:07 +0800 |
---|---|---|
committer | Roman Bogorodskiy <novel@FreeBSD.org> | 2019-06-29 18:32:07 +0800 |
commit | c19f299d9da5fe0470b26af6dc5e0adef1745e55 (patch) | |
tree | 81a0b1abbc25604c52d0a19a330aed85b91ff611 /deskutils/spice-gtk | |
parent | f5f826f007a7a9c819c52499dc7645e52b462277 (diff) | |
download | freebsd-ports-gnome-c19f299d9da5fe0470b26af6dc5e0adef1745e55.tar.gz freebsd-ports-gnome-c19f299d9da5fe0470b26af6dc5e0adef1745e55.tar.zst freebsd-ports-gnome-c19f299d9da5fe0470b26af6dc5e0adef1745e55.zip |
deskutils/spice-gtk: drop unneeded SSL_(CFLAGS|LIBS) from CONFIGURE_ENV
It's no longer needed to set SSL_(CFLAGS|LIBS) in addition to
OPENSSL_(CFLAGS|LIBS), as it was fixed upstream [1], so don't
set these unused variables.
1: https://github.com/freedesktop/spice-gtk/commit/8bf59bc
PR: 238786
Approved by: maintainer
Diffstat (limited to 'deskutils/spice-gtk')
-rw-r--r-- | deskutils/spice-gtk/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/deskutils/spice-gtk/Makefile b/deskutils/spice-gtk/Makefile index c07f4b208f34..9acc54cb9a0e 100644 --- a/deskutils/spice-gtk/Makefile +++ b/deskutils/spice-gtk/Makefile @@ -33,9 +33,7 @@ CPE_VENDOR= redhat SPICE_SSL_CFLAGS= -I${OPENSSLINC} SPICE_SSL_LIBS= -L${OPENSSLLIB} -lcrypto -lssl CONFIGURE_ENV+= OPENSSL_CFLAGS="${SPICE_SSL_CFLAGS}" \ - OPENSSL_LIBS="${SPICE_SSL_LIBS}" \ - SSL_CFLAGS="${SPICE_SSL_CFLAGS}" \ - SSL_LIBS="${SPICE_SSL_LIBS}" + OPENSSL_LIBS="${SPICE_SSL_LIBS}" GNU_CONFIGURE= yes USE_LDCONFIG= yes |