diff options
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/metacity/files/patch-configure | 11 | ||||
-rw-r--r-- | x11-wm/metacity/files/patch-src_core_delete.c | 10 | ||||
-rw-r--r-- | x11-wm/metacity/files/patch-src_core_main.c | 14 |
3 files changed, 35 insertions, 0 deletions
diff --git a/x11-wm/metacity/files/patch-configure b/x11-wm/metacity/files/patch-configure new file mode 100644 index 000000000..223d0af9e --- /dev/null +++ b/x11-wm/metacity/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig 2010-04-01 13:44:38.000000000 +0200 ++++ configure 2010-04-01 13:45:49.000000000 +0200 +@@ -24238,7 +24238,7 @@ + " + + METACITY_MINOR_VERSION=30 +-if test $(( $(echo $METACITY_MINOR_VERSION) %2)) == "1"; then ++if test $(( $(echo $METACITY_MINOR_VERSION) %2)) = "1"; then + stable_version=$(( ($METACITY_MINOR_VERSION / 2) * 2)) + echo "This is the UNSTABLE branch of metacity" + echo -n "Use 2.$stable_version.x for stable " diff --git a/x11-wm/metacity/files/patch-src_core_delete.c b/x11-wm/metacity/files/patch-src_core_delete.c new file mode 100644 index 000000000..c72b0f60a --- /dev/null +++ b/x11-wm/metacity/files/patch-src_core_delete.c @@ -0,0 +1,10 @@ +--- src/core/delete.c.orig 2010-01-30 18:56:27.000000000 -0500 ++++ src/core/delete.c 2010-01-30 18:56:53.000000000 -0500 +@@ -32,6 +32,7 @@ + #include "workspace.h" + + #include <sys/types.h> ++#include <sys/wait.h> + #include <signal.h> + #include <unistd.h> + #include <errno.h> diff --git a/x11-wm/metacity/files/patch-src_core_main.c b/x11-wm/metacity/files/patch-src_core_main.c new file mode 100644 index 000000000..2d5171e5d --- /dev/null +++ b/x11-wm/metacity/files/patch-src_core_main.c @@ -0,0 +1,14 @@ +--- src/core/main.c.orig 2010-01-21 11:09:25.000000000 -0500 ++++ src/core/main.c 2010-01-30 18:53:17.000000000 -0500 +@@ -58,7 +58,11 @@ + + #include <stdlib.h> + #include <sys/types.h> ++#ifdef __linux__ + #include <wait.h> ++#else ++#include <sys/wait.h> ++#endif + #include <stdio.h> + #include <string.h> + #include <signal.h> |