pkgsrc/net/libdlna/patches/patch-af
obache 48824febe7 Import libdlna-0.2.3 as net/libdlna.
libdlna aims at being the reference open-source implementation of DLNA (Digital
Living Network Alliance) standards. Its primary goal is to provide DLNA support
to uShare, an embedded DLNA & UPnP A/V Media Server, but it will be used to
build both DLNA servers and players in the long term.

libdlna is written in C and relies on FFMPEG librairies (libavformat and
libavcodec) to handle and demux A/V streams. You still need libupnp to provide
basic UPnP support to your project.

libdlna is based on official DLNA specifications and aims at a providing a
complete respect of the defined standards. Right now, libdlna can be used to
build compliant DLNA Media Servers.

libdlna is free software - it is licensed under the terms of the GNU Lesser
General Public License (LGPL).
2010-05-23 08:03:18 +00:00

14 lines
288 B
Text

$NetBSD: patch-af,v 1.1.1.1 2010/05/23 08:03:18 obache Exp $
need stdlib.h for malloc().
--- src/upnp_dms.c.orig 2007-11-26 20:47:43.000000000 +0000
+++ src/upnp_dms.c
@@ -20,6 +20,7 @@
*/
#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
#include "dlna_internals.h"