diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-04-06 22:17:46 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-04-06 22:17:46 +0800 |
commit | c06a39862f912339843f1397fec4599506779ca8 (patch) | |
tree | 05b34fca3a762dd2e2a956fb9e387b5146c92a29 /x11-wm/metacity/files | |
parent | c75470c353e67908535bae07a4976cd3a30c74ff (diff) | |
download | marcuscom-ports-c06a39862f912339843f1397fec4599506779ca8.tar marcuscom-ports-c06a39862f912339843f1397fec4599506779ca8.tar.gz marcuscom-ports-c06a39862f912339843f1397fec4599506779ca8.tar.bz2 marcuscom-ports-c06a39862f912339843f1397fec4599506779ca8.tar.lz marcuscom-ports-c06a39862f912339843f1397fec4599506779ca8.tar.xz marcuscom-ports-c06a39862f912339843f1397fec4599506779ca8.tar.zst marcuscom-ports-c06a39862f912339843f1397fec4599506779ca8.zip |
Update to 2.19.1
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@8597 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..f1eda8638 --- /dev/null +++ b/x11-wm/metacity/files/patch-configure @@ -0,0 +1,19 @@ +--- configure.orig Fri Apr 6 09:56:51 2007 ++++ configure Fri Apr 6 09:59:52 2007 +@@ -29363,7 +29363,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 + +@@ -34431,7 +34430,7 @@ + " + + METACITY_MINOR_VERSION=19 +-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 |