diff options
author | jmcneill <jmcneill@pkgsrc.org> | 2018-06-02 16:46:50 +0000 |
---|---|---|
committer | jmcneill <jmcneill@pkgsrc.org> | 2018-06-02 16:46:50 +0000 |
commit | 75ace7d1b518d8c747db70aebc15e854a5d335c0 (patch) | |
tree | 07045c061cc0a0fc31eae4852cf699830a0dfd6a /x11/slim | |
parent | 1a7be2856ced4b4fd99619a1e60191023069445e (diff) | |
download | pkgsrc-75ace7d1b518d8c747db70aebc15e854a5d335c0.tar.gz |
slim: fix build with clang
Diffstat (limited to 'x11/slim')
-rw-r--r-- | x11/slim/distinfo | 3 | ||||
-rw-r--r-- | x11/slim/patches/patch-panel.cpp | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/x11/slim/distinfo b/x11/slim/distinfo index 03ed2b83a45..1a910ffb296 100644 --- a/x11/slim/distinfo +++ b/x11/slim/distinfo @@ -1,8 +1,9 @@ -$NetBSD: distinfo,v 1.2 2018/05/18 15:16:12 youri Exp $ +$NetBSD: distinfo,v 1.3 2018/06/02 16:46:50 jmcneill Exp $ SHA1 (slim-1.3.6.tar.gz) = 9407ea2ee7b2ed649f17a8ddbf1f7b26a7c7b9fb RMD160 (slim-1.3.6.tar.gz) = 1bf3269b23275c50b67ada8cb5709e093eb6764f SHA512 (slim-1.3.6.tar.gz) = 345b1dee5d6f0c3716dfa7c5c16274adbf18586bdaaa6af4f310e24c5a61f79a297ffac921a5ba545523317e9fe120916df226c36b9c9b49c2ac9c1ca21dee0c Size (slim-1.3.6.tar.gz) = 232547 bytes SHA1 (patch-CMakeLists.txt) = 27f0222a206465e12f22f78e418b1615f7825cd4 +SHA1 (patch-panel.cpp) = 38ae847eb34f90ee7ca5c23daf515067e5c3b844 SHA1 (patch-slim.conf) = c85fb8f14e02e602f1dd5a72ffa20de7a34e5a13 diff --git a/x11/slim/patches/patch-panel.cpp b/x11/slim/patches/patch-panel.cpp new file mode 100644 index 00000000000..ba64c6cf39e --- /dev/null +++ b/x11/slim/patches/patch-panel.cpp @@ -0,0 +1,13 @@ +$NetBSD: patch-panel.cpp,v 1.1 2018/06/02 16:46:50 jmcneill Exp $ + +--- panel.cpp.orig 2013-10-01 22:38:05.000000000 +0000 ++++ panel.cpp +@@ -48,7 +48,7 @@ Panel::Panel(Display* dpy, int scr, Wind + gcm = GCGraphicsExposures; + gcv.graphics_exposures = False; + WinGC = XCreateGC(Dpy, Win, gcm, &gcv); +- if (WinGC < 0) { ++ if ((intptr_t)WinGC < 0) { + cerr << APPNAME + << ": failed to create pixmap\n."; + exit(ERR_EXIT); |