From owner-svn-ports-all@FreeBSD.ORG Thu Dec 19 14:05:44 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D01C1D77; Thu, 19 Dec 2013 14:05:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BB64C1389; Thu, 19 Dec 2013 14:05:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBJE5iXa048606; Thu, 19 Dec 2013 14:05:44 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBJE5imM048605; Thu, 19 Dec 2013 14:05:44 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201312191405.rBJE5imM048605@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 19 Dec 2013 14:05:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r336911 - branches/2014Q1/graphics/squish X-SVN-Group: ports-branches 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.17 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: Thu, 19 Dec 2013 14:05:44 -0000 Author: bapt Date: Thu Dec 19 14:05:44 2013 New Revision: 336911 URL: http://svnweb.freebsd.org/changeset/ports/336911 Log: MFH: r336891 - Fix build with clang [1] - Update maintainer email [1] - Use option helpers PR: ports/184683 [1] Submitted by: maintainer Modified: branches/2014Q1/graphics/squish/Makefile (contents, props changed) Directory Properties: branches/2014Q1/ (props changed) Modified: branches/2014Q1/graphics/squish/Makefile ============================================================================== --- branches/2014Q1/graphics/squish/Makefile Thu Dec 19 14:04:45 2013 (r336910) +++ branches/2014Q1/graphics/squish/Makefile Thu Dec 19 14:05:44 2013 (r336911) @@ -1,4 +1,4 @@ -# Created by: Reinier de Blois +# Created by: Reinier de Blois # $FreeBSD$ PORTNAME= squish @@ -6,7 +6,7 @@ PORTVERSION= 1.10 CATEGORIES= graphics MASTER_SITES= http://libsquish.googlecode.com/files/ -MAINTAINER= me@rdb.name +MAINTAINER= rddeblois@gmail.com COMMENT= Open source DXT compression library LICENSE= MIT @@ -15,21 +15,14 @@ USES= gmake MAKE_ENV= INSTALL_DIR=${STAGEDIR}${PREFIX} PLIST_FILES= include/squish.h \ lib/libsquish.a -CXXFLAGS+= -fPIC +CXXFLAGS+= -fPIC -include limits.h OPTIONS_RADIO= RG1 OPTIONS_RADIO_RG1= ALTIVEC SSE ALTIVEC_DESC= Use Altivec instructions RG1_DESC= Optimizations Selection -.include - -.if ${PORT_OPTIONS:MALTIVEC} -CXXFLAGS+= -DSQUISH_USE_ALTIVEC=1 -maltivec -.endif - -.if ${PORT_OPTIONS:MSSE} -CXXFLAGS+= -DSQUISH_USE_SSE=2 -msse -.endif +ALTIVEC_CXXFLAGS= -DSQUISH_USE_ALTIVEC=1 -maltivec +SSE_CXXFLAGS= -DSQUISH_USE_SSE=2 -msse .include