diff options
author | joerg <joerg> | 2011-09-24 13:01:28 +0000 |
---|---|---|
committer | joerg <joerg> | 2011-09-24 13:01:28 +0000 |
commit | e75dad8209a9225eab1e9d85fb1605d97717a241 (patch) | |
tree | 24bfab80f1c563458f70585f1fa3211a801d47b1 | |
parent | 02d911c9922b48ae90e11ec3a31a81df16d4505e (diff) | |
download | pkgsrc-e75dad8209a9225eab1e9d85fb1605d97717a241.tar.gz |
Fix fallout from include guard rename in libX11
-rw-r--r-- | wm/blackbox70/distinfo | 3 | ||||
-rw-r--r-- | wm/blackbox70/patches/patch-lib-Util.hh | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/wm/blackbox70/distinfo b/wm/blackbox70/distinfo index c53a5e8e530..a612459f560 100644 --- a/wm/blackbox70/distinfo +++ b/wm/blackbox70/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.2 2008/01/14 02:04:41 rillig Exp $ +$NetBSD: distinfo,v 1.3 2011/09/24 13:01:28 joerg Exp $ SHA1 (blackbox-0.70.1.tar.gz) = f0ab7e4b44ae6ee4c2a2136651afc567c47fe2cd RMD160 (blackbox-0.70.1.tar.gz) = ab80c43d42dbfac23c9f981885f25a42c66f51a6 @@ -6,3 +6,4 @@ Size (blackbox-0.70.1.tar.gz) = 650400 bytes SHA1 (patch-aa) = 24a333e964dea6c0707df681ce14153ef158b305 SHA1 (patch-ab) = 30633230592a0b81002bdddbb1128694acde9d10 SHA1 (patch-ac) = f4ad9466b09f01bc90c1cd0bc036ce6c397e6609 +SHA1 (patch-lib-Util.hh) = b0bbf923ee06d200666ce96b6bf5ad648b361fd8 diff --git a/wm/blackbox70/patches/patch-lib-Util.hh b/wm/blackbox70/patches/patch-lib-Util.hh new file mode 100644 index 00000000000..85e62b6af43 --- /dev/null +++ b/wm/blackbox70/patches/patch-lib-Util.hh @@ -0,0 +1,13 @@ +$NetBSD: patch-lib-Util.hh,v 1.1 2011/09/24 13:01:29 joerg Exp $ + +--- lib/Util.hh.orig 2011-09-22 13:58:57.000000000 +0000 ++++ lib/Util.hh +@@ -94,7 +94,7 @@ namespace bt { + + std::string tolower(const std::string &string); + +-#ifdef _XUTIL_H_ ++#if defined(_XUTIL_H_) || defined(_X11_XUTIL_H_) + std::string textPropertyToString(::Display *display, + ::XTextProperty& text_prop); + #endif |