diff options
author | krion <krion@FreeBSD.org> | 2004-08-04 10:00:02 +0000 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2004-08-04 10:00:02 +0000 |
commit | 8637106dec30f43f7aed2e4b04265413df14bcb8 (patch) | |
tree | 005bc2afbac8840b916edb6459feca2cc7c50794 /x11-wm/golem | |
parent | 552acbde005ee0a95a7fced6451bf421746aea06 (diff) | |
download | FreeBSD-ports-8637106dec30f43f7aed2e4b04265413df14bcb8.zip FreeBSD-ports-8637106dec30f43f7aed2e4b04265413df14bcb8.tar.gz |
Fix build with gcc-3.4
PR: ports/69981
Submitted by: Andrey Slusar <vasallia@ukr.net>
Diffstat (limited to 'x11-wm/golem')
-rw-r--r-- | x11-wm/golem/Makefile | 2 | ||||
-rw-r--r-- | x11-wm/golem/files/patch-plugins::pier::parseparams.c | 10 | ||||
-rw-r--r-- | x11-wm/golem/files/patch-plugins::simple_menus::parseparams.c | 9 |
3 files changed, 20 insertions, 1 deletions
diff --git a/x11-wm/golem/Makefile b/x11-wm/golem/Makefile index 7c9c1a5..227000a 100644 --- a/x11-wm/golem/Makefile +++ b/x11-wm/golem/Makefile @@ -16,7 +16,7 @@ COMMENT= Small window manager with themes and plugins .if defined(WANT_SOUND) LIB_DEPENDS= esd.2:${PORTSDIR}/audio/esound -CONFIGURE_ARGS= --enable-sound +CONFIGURE_ARGS= --enable-sound PLIST_SUB+= NO_SOUND="" .else PLIST_SUB+= NO_SOUND="@comment " diff --git a/x11-wm/golem/files/patch-plugins::pier::parseparams.c b/x11-wm/golem/files/patch-plugins::pier::parseparams.c new file mode 100644 index 0000000..e054b5a --- /dev/null +++ b/x11-wm/golem/files/patch-plugins::pier::parseparams.c @@ -0,0 +1,10 @@ +--- plugins/pier/parseparams.c.old Wed Aug 4 05:00:10 2004 ++++ plugins/pier/parseparams.c Wed Aug 4 05:00:25 2004 +@@ -161,6 +161,7 @@ + } + PWARN("ignoring unknown pier item type %s", itemparam->value); + found: ++ continue; + } + } + } diff --git a/x11-wm/golem/files/patch-plugins::simple_menus::parseparams.c b/x11-wm/golem/files/patch-plugins::simple_menus::parseparams.c new file mode 100644 index 0000000..022c0f8 --- /dev/null +++ b/x11-wm/golem/files/patch-plugins::simple_menus::parseparams.c @@ -0,0 +1,9 @@ +--- plugins/simple_menus/parseparams.c.orig Wed Nov 28 01:44:35 2001 ++++ plugins/simple_menus/parseparams.c Wed Aug 4 04:58:14 2004 +@@ -166,5 +166,6 @@ + } + PWARN("ignoring unknown parameter type %s, under %s", param->name, topparam->name); + found: ++ continue; + } + } |