pkgsrc-Changes archive

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

CVS commit: pkgsrc/net/ocsync



Module Name:    pkgsrc
Committed By:   nia
Date:           Thu Oct 10 21:29:56 UTC 2024

Modified Files:
        pkgsrc/net/ocsync: distinfo
        pkgsrc/net/ocsync/patches: patch-src_std_c__string.c

Log Message:
ocsync: Use const iconv on SunOS.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/net/ocsync/distinfo
cvs rdiff -u -r1.2 -r1.3 pkgsrc/net/ocsync/patches/patch-src_std_c__string.c

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

Modified files:

Index: pkgsrc/net/ocsync/distinfo
diff -u pkgsrc/net/ocsync/distinfo:1.7 pkgsrc/net/ocsync/distinfo:1.8
--- pkgsrc/net/ocsync/distinfo:1.7      Tue Oct 26 11:06:11 2021
+++ pkgsrc/net/ocsync/distinfo  Thu Oct 10 21:29:55 2024
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.7 2021/10/26 11:06:11 nia Exp $
+$NetBSD: distinfo,v 1.8 2024/10/10 21:29:55 nia Exp $
 
 BLAKE2s (ocsync-0.90.4.tar.bz2) = ce238190c3167581c57278d5831a69a7765b5749822d4a6be57f5de7762accec
 SHA512 (ocsync-0.90.4.tar.bz2) = 74bf6b083ae4d4c09e3915d777d916a04ebb19aefb21a5a14a49e2079e02c5c60f1f274aa0cab5c227147883eaf1a5f91b6c0546b818c960cc3575cdcdd93d57
@@ -8,4 +8,4 @@ SHA1 (patch-cmake_Modules_FindLibSSH.cma
 SHA1 (patch-config_CMakeLists.txt) = b387f38a79d9f85e3f67060a2cb689bb13dd1c28
 SHA1 (patch-src_csync__log.h) = 734978a27fec23b4d84e196c651601959436f188
 SHA1 (patch-src_httpbf_src_httpbf.c) = 79c9ab6e2fb7855db25f7d50860851a5061c5bea
-SHA1 (patch-src_std_c__string.c) = 4f94ae5559fd0c19b11f3bcd751b5de89ad615a4
+SHA1 (patch-src_std_c__string.c) = 0d3947dc382499df4c568196bc1399f978e2bb78

Index: pkgsrc/net/ocsync/patches/patch-src_std_c__string.c
diff -u pkgsrc/net/ocsync/patches/patch-src_std_c__string.c:1.2 pkgsrc/net/ocsync/patches/patch-src_std_c__string.c:1.3
--- pkgsrc/net/ocsync/patches/patch-src_std_c__string.c:1.2     Thu Oct 24 22:28:46 2019
+++ pkgsrc/net/ocsync/patches/patch-src_std_c__string.c Thu Oct 10 21:29:56 2024
@@ -1,4 +1,4 @@
-$NetBSD: patch-src_std_c__string.c,v 1.2 2019/10/24 22:28:46 kamil Exp $
+$NetBSD: patch-src_std_c__string.c,v 1.3 2024/10/10 21:29:56 nia Exp $
 
 * For NetBSD iconv(3), this should be fixed for GNU iconv and NetBSD case.
 
@@ -24,7 +24,7 @@ $NetBSD: patch-src_std_c__string.c,v 1.2
  
  static char *c_iconv(const char* str, enum iconv_direction dir)
  {
-+#if defined(__NetBSD__) && !NETBSD_POSIX_ICONV
++#if (defined(__NetBSD__) && !NETBSD_POSIX_ICONV) || defined(__sun)
 +  const char *in = (char*)str;
 +#else
    char *in = (char*)str;



Home | Main Index | Thread Index | Old Index