pkgsrc-Changes archive

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

CVS commit: pkgsrc/textproc/fmtlib



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Tue Dec  4 10:05:22 UTC 2018

Modified Files:
        pkgsrc/textproc/fmtlib: distinfo
Added Files:
        pkgsrc/textproc/fmtlib/patches: patch-include_fmt_posix.h

Log Message:
fmtlib: Avoid strtod_l on SunOS.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/fmtlib/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/textproc/fmtlib/patches/patch-include_fmt_posix.h

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

Modified files:

Index: pkgsrc/textproc/fmtlib/distinfo
diff -u pkgsrc/textproc/fmtlib/distinfo:1.1 pkgsrc/textproc/fmtlib/distinfo:1.2
--- pkgsrc/textproc/fmtlib/distinfo:1.1 Sun Dec  2 17:12:18 2018
+++ pkgsrc/textproc/fmtlib/distinfo     Tue Dec  4 10:05:22 2018
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.1 2018/12/02 17:12:18 adam Exp $
+$NetBSD: distinfo,v 1.2 2018/12/04 10:05:22 jperkin Exp $
 
 SHA1 (fmt-5.2.1.tar.gz) = 8b38f1ecdf137e8ca24e9b66145c1b94fa5f921d
 RMD160 (fmt-5.2.1.tar.gz) = 35cec2d51a003bdb35282897e0d1400d0b2f9db2
 SHA512 (fmt-5.2.1.tar.gz) = 2b63a741df4df9c3cbf04098c6548bb3d0f9836fe912325542298df57c888f43e72159469fb87685b423694e43e4418545377d5ee6393f2709955be2c13780a8
 Size (fmt-5.2.1.tar.gz) = 648668 bytes
+SHA1 (patch-include_fmt_posix.h) = 083c19a7f1fc02e04f355e3d45781b47364baca1

Added files:

Index: pkgsrc/textproc/fmtlib/patches/patch-include_fmt_posix.h
diff -u /dev/null pkgsrc/textproc/fmtlib/patches/patch-include_fmt_posix.h:1.1
--- /dev/null   Tue Dec  4 10:05:22 2018
+++ pkgsrc/textproc/fmtlib/patches/patch-include_fmt_posix.h    Tue Dec  4 10:05:22 2018
@@ -0,0 +1,15 @@
+$NetBSD: patch-include_fmt_posix.h,v 1.1 2018/12/04 10:05:22 jperkin Exp $
+
+Avoid strtod_l on SunOS.
+
+--- include/fmt/posix.h.orig   2018-09-21 17:18:51.000000000 +0000
++++ include/fmt/posix.h
+@@ -267,7 +267,7 @@ long getpagesize();
+ 
+ #if (defined(LC_NUMERIC_MASK) || defined(_MSC_VER)) && \
+     !defined(__ANDROID__) && !defined(__CYGWIN__) && !defined(__OpenBSD__) && \
+-    !defined(__NEWLIB_H__)
++    !defined(__NEWLIB_H__) && !defined(__sun)
+ # define FMT_LOCALE
+ #endif
+ 



Home | Main Index | Thread Index | Old Index