From owner-svn-ports-all@FreeBSD.ORG Sun Mar 22 20:52:24 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E64A0834; Sun, 22 Mar 2015 20:52:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 D1820391; Sun, 22 Mar 2015 20:52:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2MKqOmv010780; Sun, 22 Mar 2015 20:52:24 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2MKqOPh010778; Sun, 22 Mar 2015 20:52:24 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201503222052.t2MKqOPh010778@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Sun, 22 Mar 2015 20:52:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r381960 - head/security/proxytunnel/files X-SVN-Group: ports-head 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.18-1 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: Sun, 22 Mar 2015 20:52:25 -0000 Author: ehaupt Date: Sun Mar 22 20:52:24 2015 New Revision: 381960 URL: https://svnweb.freebsd.org/changeset/ports/381960 QAT: https://qat.redports.org/buildarchive/r381960/ Log: Fix build with LibreSSL PR: 198754 Submitted by: spil.oss@gmail.com Modified: head/security/proxytunnel/files/patch-Makefile Modified: head/security/proxytunnel/files/patch-Makefile ============================================================================== --- head/security/proxytunnel/files/patch-Makefile Sun Mar 22 20:36:22 2015 (r381959) +++ head/security/proxytunnel/files/patch-Makefile Sun Mar 22 20:52:24 2015 (r381960) @@ -1,5 +1,5 @@ ---- ./Makefile.orig 2008-03-13 16:10:21.000000000 +0100 -+++ ./Makefile 2008-03-13 16:10:39.000000000 +0100 +--- Makefile.orig 2008-02-26 23:31:08 UTC ++++ Makefile @@ -5,7 +5,7 @@ CC ?= cc CFLAGS ?= -Wall -O2 -ggdb @@ -9,3 +9,19 @@ # Comment on non-gnu systems OPTFLAGS += -DHAVE_GETOPT_LONG +@@ -38,13 +38,14 @@ OPTFLAGS += -DSO_REUSEPORT + # END system dependant block + + SSL_LIBS := $(shell pkg-config --libs libssl 2>/dev/null) ++CRYPTO_LIBS := $(shell pkg-config --libs libcrypto 2>/dev/null) + ifeq ($(SSL_LIBS),) + SSL_LIBS := $(shell pkg-config --libs openssl 2>/dev/null) + endif + ifeq ($(SSL_LIBS),) + SSL_LIBS := -lssl -lcrypto + endif +-LDFLAGS += $(SSL_LIBS) ++LDFLAGS += $(SSL_LIBS) $(CRYPTO_LIBS) + + PREFIX =/usr/local + BINDIR = $(PREFIX)/bin