Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 11 Jun 2020 01:43:10 +0000 (UTC)
From:      Ashish SHUKLA <ashish@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r538450 - head/irc/srain/files
Message-ID:  <202006110143.05B1hAit041044@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <monwarez at mailoo.org>

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)
  



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202006110143.05B1hAit041044>