From owner-svn-ports-all@FreeBSD.ORG Thu Dec 26 12:41:08 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D46054AB; Thu, 26 Dec 2013 12:41:08 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C06AA1D78; Thu, 26 Dec 2013 12:41:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBQCf86Z073992; Thu, 26 Dec 2013 12:41:08 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBQCf8Ok073989; Thu, 26 Dec 2013 12:41:08 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201312261241.rBQCf8Ok073989@svn.freebsd.org> From: William Grzybowski Date: Thu, 26 Dec 2013 12:41:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337486 - in head/net/minidlna: . 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.17 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: Thu, 26 Dec 2013 12:41:08 -0000 Author: wg Date: Thu Dec 26 12:41:08 2013 New Revision: 337486 URL: http://svnweb.freebsd.org/changeset/ports/337486 Log: net/minidlna: fix build with debug and add option Submitted by: se Added: head/net/minidlna/files/patch-upnpreplyparse.c (contents, props changed) Modified: head/net/minidlna/Makefile Modified: head/net/minidlna/Makefile ============================================================================== --- head/net/minidlna/Makefile Thu Dec 26 12:11:04 2013 (r337485) +++ head/net/minidlna/Makefile Thu Dec 26 12:41:08 2013 (r337486) @@ -37,10 +37,11 @@ SUB_LIST+= USER=${USERS} USERS= dlna GROUPS= dlna -OPTIONS_DEFINE= KQUEUE NLS +OPTIONS_DEFINE= DEBUG KQUEUE NLS OPTIONS_DEFAULT=KQUEUE OPTIONS_SUB= yes +DEBUG_CFLAGS= -DDEBUG KQUEUE_DESC= Experimental patch for automatic rescan using kqueue(2) NLS_USES= gettext Added: head/net/minidlna/files/patch-upnpreplyparse.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/minidlna/files/patch-upnpreplyparse.c Thu Dec 26 12:41:08 2013 (r337486) @@ -0,0 +1,11 @@ +--- upnpreplyparse.c.orig 2013-11-02 02:06:41.000000000 +0100 ++++ upnpreplyparse.c 2013-12-16 20:12:25.595454171 +0100 +@@ -122,7 +122,7 @@ + { + struct NameValueParserData pdata; + struct NameValue * nv; +- ParseNameValue(buffer, bufsize, &pdata); ++ ParseNameValue(buffer, bufsize, &pdata, XML_STORE_EMPTY_FL); + for(nv = pdata.head.lh_first; + nv != NULL; + nv = nv->entries.le_next)