diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-11-13 05:22:02 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-11-13 05:22:02 +0800 |
commit | f440fd4c1f107976a2838e59921fd3d3ba41c068 (patch) | |
tree | 5a97c1b93da658f6c79f80b2b40f88a5c0438d6b /x11-wm/metacity/files | |
parent | 13eb5cf52f71da4b78dd2377d29a3281651af1bf (diff) | |
download | marcuscom-ports-f440fd4c1f107976a2838e59921fd3d3ba41c068.tar.gz marcuscom-ports-f440fd4c1f107976a2838e59921fd3d3ba41c068.tar.zst marcuscom-ports-f440fd4c1f107976a2838e59921fd3d3ba41c068.zip |
Update to 2.21.1.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@9925 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-wm/metacity/files')
-rw-r--r-- | x11-wm/metacity/files/patch-configure | 19 | ||||
-rw-r--r-- | x11-wm/metacity/files/patch-src_window-props.c | 18 |
2 files changed, 37 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..46952e336 --- /dev/null +++ b/x11-wm/metacity/files/patch-configure @@ -0,0 +1,19 @@ +--- configure.orig 2007-11-12 16:12:40.000000000 -0500 ++++ configure 2007-11-12 16:15:09.000000000 -0500 +@@ -26431,7 +26431,6 @@ echo "${ECHO_T}$have_xrender" >&6; } + + if test x$have_xrender = xyes; then + echo "Building with Render" +- METACITY_PC_MODULES="$METACITY_PC_MODULES xrender >= $XRENDER_VERSION" + fi + fi ## have_composite + +@@ -30995,7 +30994,7 @@ metacity-$VERSION: + " + + METACITY_MINOR_VERSION=21 +-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_window-props.c b/x11-wm/metacity/files/patch-src_window-props.c new file mode 100644 index 000000000..e32aacf7f --- /dev/null +++ b/x11-wm/metacity/files/patch-src_window-props.c @@ -0,0 +1,18 @@ +--- src/window-props.c.orig Wed Dec 14 09:27:03 2005 ++++ src/window-props.c Wed Dec 14 09:28:57 2005 +@@ -20,6 +20,7 @@ + * 02111-1307, USA. + */ + ++#include <sys/param.h> + #include <config.h> + #include "window-props.h" + #include "xprops.h" +@@ -194,6 +195,7 @@ reload_net_wm_user_time (MetaWindow * + } + + #define MAX_TITLE_LENGTH 512 ++#define HOST_NAME_MAX MAXHOSTNAMELEN + + /** + * Called by set_window_title and set_icon_title to set the value of |