pkgsrc-Changes archive

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

CVS commit: pkgsrc/security/kwalletmanager



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Thu May 17 11:04:19 UTC 2018

Modified Files:
        pkgsrc/security/kwalletmanager: distinfo
Added Files:
        pkgsrc/security/kwalletmanager/patches:
            patch-src_konfigurator_savehelper.cpp

Log Message:
kwalletmanager: SunOS does not have __uid_t.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/security/kwalletmanager/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/security/kwalletmanager/patches/patch-src_konfigurator_savehelper.cpp

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

Modified files:

Index: pkgsrc/security/kwalletmanager/distinfo
diff -u pkgsrc/security/kwalletmanager/distinfo:1.2 pkgsrc/security/kwalletmanager/distinfo:1.3
--- pkgsrc/security/kwalletmanager/distinfo:1.2 Wed Nov  4 01:17:47 2015
+++ pkgsrc/security/kwalletmanager/distinfo     Thu May 17 11:04:18 2018
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.2 2015/11/04 01:17:47 agc Exp $
+$NetBSD: distinfo,v 1.3 2018/05/17 11:04:18 jperkin Exp $
 
 SHA1 (kwalletmanager-4.14.3.tar.xz) = 99981321f1891a77008bb2de4985f09739e75ef3
 RMD160 (kwalletmanager-4.14.3.tar.xz) = 2768aa8d9a3c157da49e72749d076dd3ff2d9218
 SHA512 (kwalletmanager-4.14.3.tar.xz) = 1f77dfaa66e386ed665c46361d5d99748c03f004b8282b62e02eb5fede15773d6a953b88ea94dfd529dc70a415a32384c26670876f6b6fa6e2ece2adb0594ecf
 Size (kwalletmanager-4.14.3.tar.xz) = 456176 bytes
+SHA1 (patch-src_konfigurator_savehelper.cpp) = ad6fcfb08ef56dcd2f17afba7727545b399b0b52

Added files:

Index: pkgsrc/security/kwalletmanager/patches/patch-src_konfigurator_savehelper.cpp
diff -u /dev/null pkgsrc/security/kwalletmanager/patches/patch-src_konfigurator_savehelper.cpp:1.1
--- /dev/null   Thu May 17 11:04:19 2018
+++ pkgsrc/security/kwalletmanager/patches/patch-src_konfigurator_savehelper.cpp        Thu May 17 11:04:19 2018
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_konfigurator_savehelper.cpp,v 1.1 2018/05/17 11:04:19 jperkin Exp $
+
+SunOS does not have __uid_t.
+
+--- src/konfigurator/savehelper.cpp.orig       2014-10-09 07:07:50.000000000 +0000
++++ src/konfigurator/savehelper.cpp
+@@ -22,7 +22,7 @@
+ #include <kdebug.h>
+ #include <unistd.h>
+ 
+-#if defined(Q_CC_MSVC)
++#if defined(Q_CC_MSVC) || defined(__sun)
+ // TODO: or rather use uid_t in the getuid() call below?
+ #define __uid_t uid_t
+ #endif



Home | Main Index | Thread Index | Old Index