pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/librlog



Module Name:    pkgsrc
Committed By:   nia
Date:           Wed Jul 19 15:19:37 UTC 2023

Modified Files:
        pkgsrc/devel/librlog: distinfo
        pkgsrc/devel/librlog/patches: patch-rlog_StdioNode.cpp

Log Message:
librlog: In patch, include stdint.h before using max int type.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/librlog/distinfo
cvs rdiff -u -r1.1 -r1.2 \
    pkgsrc/devel/librlog/patches/patch-rlog_StdioNode.cpp

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

Modified files:

Index: pkgsrc/devel/librlog/distinfo
diff -u pkgsrc/devel/librlog/distinfo:1.6 pkgsrc/devel/librlog/distinfo:1.7
--- pkgsrc/devel/librlog/distinfo:1.6   Tue Oct 26 10:15:27 2021
+++ pkgsrc/devel/librlog/distinfo       Wed Jul 19 15:19:36 2023
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.6 2021/10/26 10:15:27 nia Exp $
+$NetBSD: distinfo,v 1.7 2023/07/19 15:19:36 nia Exp $
 
 BLAKE2s (rlog-1.3.7.tgz) = b97a53e541900eeb938f6a7b4a6bd1e33d52fca83e4e1d5c4061f8fec2fc9d0a
 SHA512 (rlog-1.3.7.tgz) = d1f87b5c72c012b0ef7b20d411203b6fd994a5e96b874072529cdd0932095f42fc3f341ff4c077a55543161d60390a3ee741181be2ff79ae2e825f5bcebb7ecb
 Size (rlog-1.3.7.tgz) = 525396 bytes
 SHA1 (patch-rlog-RLogChannel.cpp) = e558254d091a6223e8a03bea99e4fb6764207732
-SHA1 (patch-rlog_StdioNode.cpp) = 3a8612b78eb8efd0f2a1d88b33360d493891170a
+SHA1 (patch-rlog_StdioNode.cpp) = c1319094ba8a7119fb9feb71597ba123c004de36

Index: pkgsrc/devel/librlog/patches/patch-rlog_StdioNode.cpp
diff -u pkgsrc/devel/librlog/patches/patch-rlog_StdioNode.cpp:1.1 pkgsrc/devel/librlog/patches/patch-rlog_StdioNode.cpp:1.2
--- pkgsrc/devel/librlog/patches/patch-rlog_StdioNode.cpp:1.1   Thu May 14 19:08:07 2020
+++ pkgsrc/devel/librlog/patches/patch-rlog_StdioNode.cpp       Wed Jul 19 15:19:36 2023
@@ -1,10 +1,18 @@
-$NetBSD: patch-rlog_StdioNode.cpp,v 1.1 2020/05/14 19:08:07 joerg Exp $
+$NetBSD: patch-rlog_StdioNode.cpp,v 1.2 2023/07/19 15:19:36 nia Exp $
 
 pthread_self() often returns a pointer, so use widest type.
 
---- rlog/StdioNode.cpp.orig    2020-05-12 13:29:29.773360583 +0000
+--- rlog/StdioNode.cpp.orig    2005-09-20 20:17:36.000000000 +0000
 +++ rlog/StdioNode.cpp
-@@ -220,7 +220,7 @@ StdioNode::publish( const RLogData &data
+@@ -41,6 +41,7 @@
+ #endif
+ 
+ #include <stdio.h>
++#include <stdint.h>
+ #include <stdarg.h>
+ 
+ #ifdef _WIN32
+@@ -220,7 +221,7 @@ StdioNode::publish( const RLogData &data
  #ifndef _WIN32
      if (outputThreadId) {
          char tid[16] = "";



Home | Main Index | Thread Index | Old Index