pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/x11/slim



Module Name:    pkgsrc
Committed By:   jmcneill
Date:           Sat Jun  2 16:46:50 UTC 2018

Modified Files:
        pkgsrc/x11/slim: distinfo
Added Files:
        pkgsrc/x11/slim/patches: patch-panel.cpp

Log Message:
slim: fix build with clang


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/x11/slim/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/x11/slim/patches/patch-panel.cpp

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/x11/slim/distinfo
diff -u pkgsrc/x11/slim/distinfo:1.2 pkgsrc/x11/slim/distinfo:1.3
--- pkgsrc/x11/slim/distinfo:1.2        Fri May 18 15:16:12 2018
+++ pkgsrc/x11/slim/distinfo    Sat Jun  2 16:46:50 2018
@@ -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

Added files:

Index: pkgsrc/x11/slim/patches/patch-panel.cpp
diff -u /dev/null pkgsrc/x11/slim/patches/patch-panel.cpp:1.1
--- /dev/null   Sat Jun  2 16:46:50 2018
+++ pkgsrc/x11/slim/patches/patch-panel.cpp     Sat Jun  2 16:46:50 2018
@@ -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);



Home | Main Index | Thread Index | Old Index