svn commit: r453582 - head/graphics/colmap/files

Jan Beich jbeich at FreeBSD.org
Sun Nov 5 21:57:16 UTC 2017


Author: jbeich
Date: Sun Nov  5 21:57:15 2017
New Revision: 453582
URL: https://svnweb.freebsd.org/changeset/ports/453582

Log:
  graphics/colmap: unbreak -msse -mno-sse2 build

Modified:
  head/graphics/colmap/files/patch-no-sse   (contents, props changed)

Modified: head/graphics/colmap/files/patch-no-sse
==============================================================================
--- head/graphics/colmap/files/patch-no-sse	Sun Nov  5 21:24:12 2017	(r453581)
+++ head/graphics/colmap/files/patch-no-sse	Sun Nov  5 21:57:15 2017	(r453582)
@@ -28,7 +28,7 @@ build: don't force SSE on i386
  #undef CPUPBA_USE_SSE
  #undef POINT_DATA_ALIGN4
 -#elif !defined(DISABLE_CPU_SSE)  // Using SSE
-+#elif defined(__SSE__) && !defined(DISABLE_CPU_SSE)  // Using SSE
++#elif defined(__SSE2__) && !defined(DISABLE_CPU_SSE)  // Using SSE
  #define CPUPBA_USE_SSE
  #include <xmmintrin.h>
  #include <emmintrin.h>


More information about the svn-ports-all mailing list