From owner-svn-ports-all@freebsd.org Mon Jan 30 12:49:23 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 53867CC735B; Mon, 30 Jan 2017 12:49:23 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 22F1C1F4B; Mon, 30 Jan 2017 12:49:23 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0UCnMgI061956; Mon, 30 Jan 2017 12:49:22 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0UCnMi6061955; Mon, 30 Jan 2017 12:49:22 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201701301249.v0UCnMi6061955@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Mon, 30 Jan 2017 12:49:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r432840 - head/archivers/snappy/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jan 2017 12:49:23 -0000 Author: vanilla Date: Mon Jan 30 12:49:22 2017 New Revision: 432840 URL: https://svnweb.freebsd.org/changeset/ports/432840 Log: Fix building on i386 (with SSE2 enable) PR: 216553 Submitted by: vvd@unislabs.com Added: head/archivers/snappy/files/ head/archivers/snappy/files/patch-snappy.cc (contents, props changed) Added: head/archivers/snappy/files/patch-snappy.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/snappy/files/patch-snappy.cc Mon Jan 30 12:49:22 2017 (r432840) @@ -0,0 +1,11 @@ +--- snappy.cc.orig 2017-01-30 12:42:23 UTC ++++ snappy.cc +@@ -30,7 +30,7 @@ + #include "snappy-internal.h" + #include "snappy-sinksource.h" + +-#if defined(__x86_64__) || defined(_M_X64) ++#ifdef __SSE2__ + #include + #endif + #include