diff options
author | salo <salo@pkgsrc.org> | 2005-11-15 10:32:51 +0000 |
---|---|---|
committer | salo <salo@pkgsrc.org> | 2005-11-15 10:32:51 +0000 |
commit | 7814ab268fe9d84cca5eb6c049e62ceaabfe3eb9 (patch) | |
tree | 112e539c36105184f6ef18f8970f4b3777c4f496 | |
parent | 4259893d6c9b9ff0d12dd17701626c488627d298 (diff) | |
download | pkgsrc-7814ab268fe9d84cca5eb6c049e62ceaabfe3eb9.tar.gz |
Pullup ticket 896 - requested by Martti Kuparinen
portability fix for libxfce4util
Revisions pulled up:
- pkgsrc/x11/libxfce4util/distinfo 1.12
- pkgsrc/x11/libxfce4util/patches/patch-aa 1.1
Module Name: pkgsrc
Committed By: martti
Date: Sun Nov 6 05:29:55 UTC 2005
Modified Files:
pkgsrc/x11/libxfce4util: distinfo
Added Files:
pkgsrc/x11/libxfce4util/patches: patch-aa
Log Message:
Make this compile on Darwin 8.2.0/powerpc. Patch from Krister Walfridsson.
-rw-r--r-- | x11/libxfce4util/distinfo | 3 | ||||
-rw-r--r-- | x11/libxfce4util/patches/patch-aa | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/x11/libxfce4util/distinfo b/x11/libxfce4util/distinfo index 3d9507c44ca..56d260b3a0c 100644 --- a/x11/libxfce4util/distinfo +++ b/x11/libxfce4util/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.11 2005/05/18 06:10:30 martti Exp $ +$NetBSD: distinfo,v 1.11.4.1 2005/11/15 10:32:51 salo Exp $ SHA1 (libxfce4util-4.2.2.tar.gz) = 49d945fb79870159deea73c98cc6e34f537cd2ab RMD160 (libxfce4util-4.2.2.tar.gz) = 0c8f09ced7470c0ce0d85ad5a60c5385111548e0 Size (libxfce4util-4.2.2.tar.gz) = 458244 bytes +SHA1 (patch-aa) = 601e0883696f47bf77a390113d80e4df332af6b5 diff --git a/x11/libxfce4util/patches/patch-aa b/x11/libxfce4util/patches/patch-aa new file mode 100644 index 00000000000..183d52fb066 --- /dev/null +++ b/x11/libxfce4util/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.2.2.2 2005/11/15 10:32:51 salo Exp $ + +--- libxfce4util/licenses-texts.c.orig 2005-11-05 18:23:41.000000000 +0100 ++++ libxfce4util/licenses-texts.c 2005-11-05 18:24:05.000000000 +0100 +@@ -1,7 +1,7 @@ + /* Auto generated file, do not edit */ + + /* Keep the license stuff in one section if possible */ +-#if defined(__GNUC__) ++#if defined(__GNUC__) && !defined(__APPLE__) + #define SECTION __attribute__((section(".xfce.LICENSES"))) + #else + #define SECTION |