From owner-svn-ports-all@freebsd.org Thu Jun 11 01:43:11 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 0BF87344551; Thu, 11 Jun 2020 01:43:11 +0000 (UTC) (envelope-from ashish@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49j67f6TJrz3ZDq; Thu, 11 Jun 2020 01:43:10 +0000 (UTC) (envelope-from ashish@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D964A101BC; Thu, 11 Jun 2020 01:43:10 +0000 (UTC) (envelope-from ashish@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 05B1hA0b041045; Thu, 11 Jun 2020 01:43:10 GMT (envelope-from ashish@FreeBSD.org) Received: (from ashish@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 05B1hAit041044; Thu, 11 Jun 2020 01:43:10 GMT (envelope-from ashish@FreeBSD.org) Message-Id: <202006110143.05B1hAit041044@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ashish set sender to ashish@FreeBSD.org using -f From: Ashish SHUKLA Date: Thu, 11 Jun 2020 01:43:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r538450 - head/irc/srain/files X-SVN-Group: ports-head X-SVN-Commit-Author: ashish X-SVN-Commit-Paths: head/irc/srain/files X-SVN-Commit-Revision: 538450 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jun 2020 01:43:11 -0000 Author: ashish Date: Thu Jun 11 01:43:10 2020 New Revision: 538450 URL: https://svnweb.freebsd.org/changeset/ports/538450 Log: - Fix building with OpenSSL base which does not provide pkgconfig configuration PR: 247107 Submitted by: Thibault Payet Modified: head/irc/srain/files/patch-src_Makefile Modified: head/irc/srain/files/patch-src_Makefile ============================================================================== --- head/irc/srain/files/patch-src_Makefile Thu Jun 11 01:40:55 2020 (r538449) +++ head/irc/srain/files/patch-src_Makefile Thu Jun 11 01:43:10 2020 (r538450) @@ -1,6 +1,13 @@ ---- src/Makefile.orig 2020-06-03 20:39:44 UTC +--- src/Makefile.orig 2020-05-24 04:53:14 UTC +++ src/Makefile -@@ -29,7 +29,7 @@ LIBSSLLIBS = $(shell pkg-config --libs openssl) +@@ -24,12 +24,12 @@ LIBCONFIGFLAGS = $(shell pkg-config --cflags libconfig + LIBCONFIGLIBS = $(shell pkg-config --libs libconfig) + LIBSOUPFLAGS = $(shell pkg-config --cflags libsoup-2.4) + LIBSOUPLIBS = $(shell pkg-config --libs libsoup-2.4) +-LIBSSLFLAGS = $(shell pkg-config --cflags openssl) +-LIBSSLLIBS = $(shell pkg-config --libs openssl) ++LIBSSLFLAGS = -I$(OPENSSLINC) ++LIBSSLLIBS = -L$(OPENSSLLIB) -lssl -lcrypto LIBSECRETFLAGS =$(shell pkg-config --cflags libsecret-1) LIBSECRETLIBS =$(shell pkg-config --libs libsecret-1)