svn commit: r391025 - head/graphics/squish

Dmitry Marakasov amdmi3 at FreeBSD.org
Wed Jul 1 02:44:29 UTC 2015


Author: amdmi3
Date: Wed Jul  1 02:44:28 2015
New Revision: 391025
URL: https://svnweb.freebsd.org/changeset/ports/391025

Log:
  - Use correct flag for SSE instructions
  - Enable SSE on amd64 by default
  
  PR:		200411
  Submitted by:	fidaj at ukr.net, rddeblois at gmail.com (maintainer)

Modified:
  head/graphics/squish/Makefile

Modified: head/graphics/squish/Makefile
==============================================================================
--- head/graphics/squish/Makefile	Wed Jul  1 02:08:20 2015	(r391024)
+++ head/graphics/squish/Makefile	Wed Jul  1 02:44:28 2015	(r391025)
@@ -3,6 +3,7 @@
 
 PORTNAME=	squish
 PORTVERSION=	1.10
+PORTREVISION=	1
 CATEGORIES=	graphics
 MASTER_SITES=	http://libsquish.googlecode.com/files/
 
@@ -19,10 +20,11 @@ CXXFLAGS+=	-fPIC -include limits.h
 
 OPTIONS_RADIO=	RG1
 OPTIONS_RADIO_RG1=	ALTIVEC SSE
+OPTIONS_DEFAULT_amd64=	SSE
 ALTIVEC_DESC=	Use Altivec instructions
 RG1_DESC=	Optimizations Selection
 
 ALTIVEC_CXXFLAGS=	-DSQUISH_USE_ALTIVEC=1 -maltivec
-SSE_CXXFLAGS=		-DSQUISH_USE_SSE=2 -msse
+SSE_CXXFLAGS=		-DSQUISH_USE_SSE=2 -msse2
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list