pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/snappy



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Wed May 31 08:52:41 UTC 2017

Modified Files:
        pkgsrc/devel/snappy: distinfo
Added Files:
        pkgsrc/devel/snappy/patches: patch-snappy.cc

Log Message:
Apply patch from upstream to fix SSE2 include.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/snappy/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/snappy/patches/patch-snappy.cc

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

Modified files:

Index: pkgsrc/devel/snappy/distinfo
diff -u pkgsrc/devel/snappy/distinfo:1.6 pkgsrc/devel/snappy/distinfo:1.7
--- pkgsrc/devel/snappy/distinfo:1.6    Sun Feb 26 08:41:17 2017
+++ pkgsrc/devel/snappy/distinfo        Wed May 31 08:52:40 2017
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.6 2017/02/26 08:41:17 adam Exp $
+$NetBSD: distinfo,v 1.7 2017/05/31 08:52:40 jperkin Exp $
 
 SHA1 (snappy-1.1.4.tar.gz) = 0fac144661573c747ad612c01d03a89e0a2280c7
 RMD160 (snappy-1.1.4.tar.gz) = 58fe5003fdbf3f731d6414ea90550fd64cae40e3
 SHA512 (snappy-1.1.4.tar.gz) = 4f522f1d541e3f00d82ccaf6dda5c6ede28d4db19c53717003d8057261fe8630516ed6ff2a28615da032e0de9c6200b560ed5fce4f8714df9916d50d6a7c2178
 Size (snappy-1.1.4.tar.gz) = 1491767 bytes
+SHA1 (patch-snappy.cc) = c90f4893f0b1e3cb5b4507bdd13ac558dbfc8693
 SHA1 (patch-snappy__unittest.cc) = b761c7ea6490896ea5aabb425c5a18309e1d7e90

Added files:

Index: pkgsrc/devel/snappy/patches/patch-snappy.cc
diff -u /dev/null pkgsrc/devel/snappy/patches/patch-snappy.cc:1.1
--- /dev/null   Wed May 31 08:52:41 2017
+++ pkgsrc/devel/snappy/patches/patch-snappy.cc Wed May 31 08:52:41 2017
@@ -0,0 +1,15 @@
+$NetBSD: patch-snappy.cc,v 1.1 2017/05/31 08:52:41 jperkin Exp $
+
+Fix SSE2 include, patch from upstream.
+
+--- snappy.cc.orig     1980-01-01 08:00:00.000000000 +0000
++++ snappy.cc
+@@ -30,7 +30,7 @@
+ #include "snappy-internal.h"
+ #include "snappy-sinksource.h"
+ 
+-#if defined(__x86_64__) || defined(_M_X64)
++#ifdef __SSE2__
+ #include <emmintrin.h>
+ #endif
+ #include <stdio.h>



Home | Main Index | Thread Index | Old Index