svn commit: r538450 - head/irc/srain/files

Ashish SHUKLA ashish at FreeBSD.org
Thu Jun 11 01:43:11 UTC 2020


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)
  


More information about the svn-ports-all mailing list