From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Dec 12 19:10:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4604F456 for ; Thu, 12 Dec 2013 19:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 23FD81EB3 for ; Thu, 12 Dec 2013 19:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rBCJA0BI022364 for ; Thu, 12 Dec 2013 19:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rBCJA0ao022363; Thu, 12 Dec 2013 19:10:00 GMT (envelope-from gnats) Resent-Date: Thu, 12 Dec 2013 19:10:00 GMT Resent-Message-Id: <201312121910.rBCJA0ao022363@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Hung-Yi Chen Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E7075F5B for ; Thu, 12 Dec 2013 19:02:29 +0000 (UTC) Received: from cse.tw (cse.tw [140.138.145.234]) by mx1.freebsd.org (Postfix) with ESMTP id B65C21E52 for ; Thu, 12 Dec 2013 19:02:29 +0000 (UTC) Received: from cse.tw (localhost [127.0.0.1]) by cse.tw (Postfix) with ESMTP id 459F1187B2F9 for ; Fri, 13 Dec 2013 02:56:23 +0800 (CST) Received: (from gaod@localhost) by cse.tw (8.14.5/8.14.5/Submit) id rBCIuNEN059880; Fri, 13 Dec 2013 02:56:23 +0800 (CST) (envelope-from gaod) Message-Id: <201312121856.rBCIuNEN059880@cse.tw> Date: Fri, 13 Dec 2013 02:56:23 +0800 (CST) From: Hung-Yi Chen To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/184728: [MAINTAINER] www/libmicrohttpd: Fix compatibility for fbsd 10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Dec 2013 19:10:01 -0000 >Number: 184728 >Category: ports >Synopsis: [MAINTAINER] www/libmicrohttpd: Fix compatibility for fbsd 10 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Dec 12 19:10:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Hung-Yi Chen >Release: FreeBSD 9.1-RELEASE-p6 amd64 >Organization: >Environment: System: FreeBSD cse.tw 9.1-RELEASE-p6 FreeBSD 9.1-RELEASE-p6 #0: Wed Aug 21 20:40:52 UTC 2013 >Description: - Fix compatibility for FreeBSD 10. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- libmicrohttpd-0.9.31.patch begins here --- diff -ruN /usr/ports/www/libmicrohttpd/files/patch-src_examples_Makefile.am ./files/patch-src_examples_Makefile.am --- /usr/ports/www/libmicrohttpd/files/patch-src_examples_Makefile.am 1970-01-01 08:00:00.000000000 +0800 +++ ./files/patch-src_examples_Makefile.am 2013-12-13 02:46:10.000000000 +0800 @@ -0,0 +1,29 @@ +--- src/examples/Makefile.am.orig 2013-12-12 18:44:38.000000000 +0000 ++++ src/examples/Makefile.am 2013-12-12 18:45:00.000000000 +0000 +@@ -160,8 +160,7 @@ + $(top_builddir)/src/microspdy/libmicrospdy.la \ + -lssl \ + -lcrypto \ +- -lz \ +- -ldl ++ -lz + + spdy_fileserver_SOURCES = \ + spdy_fileserver.c +@@ -169,8 +168,7 @@ + $(top_builddir)/src/microspdy/libmicrospdy.la \ + -lssl \ + -lcrypto \ +- -lz \ +- -ldl ++ -lz + + spdy_response_with_callback_SOURCES = \ + spdy_response_with_callback.c +@@ -178,5 +176,4 @@ + $(top_builddir)/src/microspdy/libmicrospdy.la \ + -lssl \ + -lcrypto \ +- -lz \ +- -ldl ++ -lz diff -ruN /usr/ports/www/libmicrohttpd/files/patch-src_examples_Makefile.in ./files/patch-src_examples_Makefile.in --- /usr/ports/www/libmicrohttpd/files/patch-src_examples_Makefile.in 1970-01-01 08:00:00.000000000 +0800 +++ ./files/patch-src_examples_Makefile.in 2013-12-13 02:45:51.000000000 +0800 @@ -0,0 +1,32 @@ +--- src/examples/Makefile.in.orig 2013-12-12 18:44:45.000000000 +0000 ++++ src/examples/Makefile.in 2013-12-12 18:45:11.000000000 +0000 +@@ -601,8 +601,7 @@ + $(top_builddir)/src/microspdy/libmicrospdy.la \ + -lssl \ + -lcrypto \ +- -lz \ +- -ldl ++ -lz + + spdy_fileserver_SOURCES = \ + spdy_fileserver.c +@@ -611,8 +610,7 @@ + $(top_builddir)/src/microspdy/libmicrospdy.la \ + -lssl \ + -lcrypto \ +- -lz \ +- -ldl ++ -lz + + spdy_response_with_callback_SOURCES = \ + spdy_response_with_callback.c +@@ -621,8 +619,7 @@ + $(top_builddir)/src/microspdy/libmicrospdy.la \ + -lssl \ + -lcrypto \ +- -lz \ +- -ldl ++ -lz + + all: all-recursive + --- libmicrohttpd-0.9.31.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: