Date: Sat, 29 Jun 2019 10:32:07 +0000 (UTC) From: Roman Bogorodskiy <novel@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r505344 - head/deskutils/spice-gtk Message-ID: <201906291032.x5TAW7Gw045335@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: novel Date: Sat Jun 29 10:32:07 2019 New Revision: 505344 URL: https://svnweb.freebsd.org/changeset/ports/505344 Log: 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 Modified: head/deskutils/spice-gtk/Makefile Modified: head/deskutils/spice-gtk/Makefile ============================================================================== --- head/deskutils/spice-gtk/Makefile Sat Jun 29 10:28:48 2019 (r505343) +++ head/deskutils/spice-gtk/Makefile Sat Jun 29 10:32:07 2019 (r505344) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906291032.x5TAW7Gw045335>