pkgsrc/audio/amarok/patches/patch-aa
joerg f15b0fa555 In xmmswrapper.cpp, include stddef.h first to get a proper NULL.
For some reason, a (char *)0 gets defined somewhere on DragonFly
and breaks C++ horribly.
Add USE_LIBTOOL to workaround libtool breakage (unability to find
library `').
2005-11-17 16:45:52 +00:00

13 lines
371 B
Text

$NetBSD: patch-aa,v 1.8 2005/11/17 16:45:52 joerg Exp $
--- amarok/src/vis/xmmswrapper/xmmswrapper.cpp.orig 2005-11-17 16:04:50.000000000 +0000
+++ amarok/src/vis/xmmswrapper/xmmswrapper.cpp
@@ -3,6 +3,8 @@
#include <config.h>
+#include <stddef.h> /* NULL */
+
#include <xmms/configfile.h> //visplugins use this stuff, see extern "C" block
#include <dirent.h>