From owner-svn-ports-head@freebsd.org Tue Jun 6 05:50:51 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8F95DBF3E34; Tue, 6 Jun 2017 05:50:51 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5E77E7F229; Tue, 6 Jun 2017 05:50:51 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v565ooBp022733; Tue, 6 Jun 2017 05:50:50 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v565oohK022732; Tue, 6 Jun 2017 05:50:50 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201706060550.v565oohK022732@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Tue, 6 Jun 2017 05:50:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442742 - head/net/libmdf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2017 05:50:51 -0000 Author: koobs Date: Tue Jun 6 05:50:50 2017 New Revision: 442742 URL: https://svnweb.freebsd.org/changeset/ports/442742 Log: net/libmdf: Add missing openssl library argument The build relies on pkg-config to supply "-lcrypto" but we're using OPENSSL_CFLAGS and OPENSSL_LIBS (not pkg-config), to enable libmdf to find openssl in base, which does not provide an openssl.pc file. The previous commit neglected to explicitly include the library to link with (-lcrypto), resulting in undefined references to OpenSSL functions when attempting to link with the libmdf library. PR: 219777 Reported by: Henrik Holst Modified: head/net/libmdf/Makefile Modified: head/net/libmdf/Makefile ============================================================================== --- head/net/libmdf/Makefile Tue Jun 6 05:09:54 2017 (r442741) +++ head/net/libmdf/Makefile Tue Jun 6 05:50:50 2017 (r442742) @@ -2,6 +2,7 @@ PORTNAME= libmdf PORTVERSION= 1.0.20 +PORTREVISION= 1 CATEGORIES= net finance MASTER_SITES= https://packages.millistream.com/source/ @@ -19,7 +20,7 @@ USE_LDCONFIG= yes CONFIGURE_ARGS= --with-pkgconfigdir=${PREFIX}/libdata/pkgconfig CONFIGURE_ENV+= OPENSSL_CFLAGS=${OPENSSLINC} \ - OPENSSL_LIBS=${OPENSSLLIB} + OPENSSL_LIBS="${OPENSSLLIB} -lcrypto" INSTALL_TARGET= install-strip TEST_TARGET= check