From owner-svn-ports-all@freebsd.org Sat Jun 27 19:30:35 2015 Return-Path: Delivered-To: svn-ports-all@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 9BBEC98E55E; Sat, 27 Jun 2015 19:30:35 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) 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 828D41D83; Sat, 27 Jun 2015 19:30:35 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5RJUZOC043998; Sat, 27 Jun 2015 19:30:35 GMT (envelope-from pgollucci@FreeBSD.org) Received: (from pgollucci@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5RJUZ3V043996; Sat, 27 Jun 2015 19:30:35 GMT (envelope-from pgollucci@FreeBSD.org) Message-Id: <201506271930.t5RJUZ3V043996@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pgollucci set sender to pgollucci@FreeBSD.org using -f From: "Philip M. Gollucci" Date: Sat, 27 Jun 2015 19:30:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390722 - in head/net/miniupnpd: . 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.20 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: Sat, 27 Jun 2015 19:30:35 -0000 Author: pgollucci Date: Sat Jun 27 19:30:34 2015 New Revision: 390722 URL: https://svnweb.freebsd.org/changeset/ports/390722 Log: net/miniupnpd: properly link against ports OpenSSL/LibreSSL PR: 199390 Submitted by: franco@opnsense.org and brnrd@ Approved by: maintainer timeout (squat@squat.no ; 76 days) Added: head/net/miniupnpd/files/patch-Makefile (contents, props changed) Modified: head/net/miniupnpd/Makefile Modified: head/net/miniupnpd/Makefile ============================================================================== --- head/net/miniupnpd/Makefile Sat Jun 27 18:45:44 2015 (r390721) +++ head/net/miniupnpd/Makefile Sat Jun 27 19:30:34 2015 (r390722) @@ -24,6 +24,9 @@ MAKE_JOBS_UNSAFE=yes USE_OPENSSL= yes USE_RC_SUBR= miniupnpd +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} + OPTIONS_DEFINE= PF_ENABLE_FILTER_RULES CHECK_PORTINUSE IPV6 UPNP_IGDV2 UPNP_STRICT LEASEFILE PF_ENABLE_FILTER_RULES_DESC= Enable pf generation of filter rules CHECK_PORTINUSE_DESC= Check if ports are in use Added: head/net/miniupnpd/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/miniupnpd/files/patch-Makefile Sat Jun 27 19:30:34 2015 (r390722) @@ -0,0 +1,11 @@ +--- Makefile.orig 2014-06-30 12:03:05 UTC ++++ Makefile +@@ -204,7 +204,7 @@ depend: config.h + testgetroute.c testportinuse.c testasyncsendto.c + + miniupnpd: config.h $(ALLOBJS) +- $(CC) $(CFLAGS) -o $@ $(ALLOBJS) $(LIBS) ++ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ALLOBJS) $(LIBS) + + # BSDmake : + # $(CC) $(CFLAGS) -o $@ $> $(LIBS)