diff options
author | joerg <joerg@pkgsrc.org> | 2005-10-03 12:11:08 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2005-10-03 12:11:08 +0000 |
commit | 918993b88dfbcdcd4fa10ab4243006f710435ccb (patch) | |
tree | dc7cb281923c3be7e2d2d5ea4d9e61255020cad5 /audio/xmms-paranormal | |
parent | 86527374146315c454b3b7a6116813ca00aec7e4 (diff) | |
download | pkgsrc-918993b88dfbcdcd4fa10ab4243006f710435ccb.tar.gz |
Unbreak build with GCC 3.4 (label at end of compound statement). Include
string.h when using functions from it.
Diffstat (limited to 'audio/xmms-paranormal')
-rw-r--r-- | audio/xmms-paranormal/distinfo | 4 | ||||
-rw-r--r-- | audio/xmms-paranormal/patches/patch-aa | 20 | ||||
-rw-r--r-- | audio/xmms-paranormal/patches/patch-ab | 20 |
3 files changed, 43 insertions, 1 deletions
diff --git a/audio/xmms-paranormal/distinfo b/audio/xmms-paranormal/distinfo index 73254e34666..dc403c1ed74 100644 --- a/audio/xmms-paranormal/distinfo +++ b/audio/xmms-paranormal/distinfo @@ -1,5 +1,7 @@ -$NetBSD: distinfo,v 1.2 2005/02/23 20:39:55 agc Exp $ +$NetBSD: distinfo,v 1.3 2005/10/03 12:11:08 joerg Exp $ SHA1 (paranormal-0.2.0.tar.gz) = d0770592b088f80bb4832afe9b391d72b7ce86f0 RMD160 (paranormal-0.2.0.tar.gz) = f1d739e9d625fa58ac24da7bb7be6209304cc5e1 Size (paranormal-0.2.0.tar.gz) = 150654 bytes +SHA1 (patch-aa) = f7930ad6402dcb6b0fcc3f1d66ff18932b1a2c73 +SHA1 (patch-ab) = b80d551c456cc0c37c1aac73c86bad9ff25fbef3 diff --git a/audio/xmms-paranormal/patches/patch-aa b/audio/xmms-paranormal/patches/patch-aa new file mode 100644 index 00000000000..ed2d4488184 --- /dev/null +++ b/audio/xmms-paranormal/patches/patch-aa @@ -0,0 +1,20 @@ +$NetBSD: patch-aa,v 1.1 2005/10/03 12:11:08 joerg Exp $ + +--- actuators.c.orig 2005-07-22 19:22:22.000000000 +0000 ++++ actuators.c +@@ -3,6 +3,7 @@ + #endif + + #include <glib.h> ++#include <string.h> + + #include "actuators.h" + //#include "containers.h" +@@ -45,6 +46,7 @@ copy_actuator (const struct pn_actuator + sizeof (union actuator_option_val)); + break; + case OPT_TYPE_STRING: ++ break; + } + } + diff --git a/audio/xmms-paranormal/patches/patch-ab b/audio/xmms-paranormal/patches/patch-ab new file mode 100644 index 00000000000..222dbc01a35 --- /dev/null +++ b/audio/xmms-paranormal/patches/patch-ab @@ -0,0 +1,20 @@ +$NetBSD: patch-ab,v 1.1 2005/10/03 12:11:08 joerg Exp $ + +--- paranormal.c.orig 2005-07-22 19:23:22.000000000 +0000 ++++ paranormal.c +@@ -8,6 +8,7 @@ + #include <sys/stat.h> + #include <unistd.h> + #include <math.h> ++#include <string.h> + + #include <SDL.h> + +@@ -168,6 +169,7 @@ pn_render (void) + take_screenshot (); + break; + default: ++ break; + } + break; + case SDL_VIDEORESIZE: |