From owner-svn-ports-head@freebsd.org Wed Jan 13 15:52:18 2016 Return-Path: Delivered-To: svn-ports-head@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 9C6A8A801B4; Wed, 13 Jan 2016 15:52:18 +0000 (UTC) (envelope-from pawel@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 67E7E1762; Wed, 13 Jan 2016 15:52:18 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0DFqHhM012388; Wed, 13 Jan 2016 15:52:17 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0DFqHNj012387; Wed, 13 Jan 2016 15:52:17 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201601131552.u0DFqHNj012387@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Wed, 13 Jan 2016 15:52:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r406052 - head/graphics/gdal X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jan 2016 15:52:18 -0000 Author: pawel Date: Wed Jan 13 15:52:17 2016 New Revision: 406052 URL: https://svnweb.freebsd.org/changeset/ports/406052 Log: Fix build on FreeBSD 9.x gdaldither.cpp: In function 'int FindNearestColor(int, int*, int, int, int)': gdaldither.cpp:534: note: use -flax-vector-conversions to permit conversions between vectors with differing element types or numbers of subparts gdaldither.cpp:534: error: cannot convert 'int __vector__' to 'long long int __vector__' for argument '1' to 'long long int __vector__ __builtin_ia32_psrlqi128(long long int __vector__, int)' gdaldither.cpp:539: error: cannot convert 'int __vector__' to 'long long int __vector__' for argument '1' to 'long long int __vector__ __builtin_ia32_psrlqi128(long long int __vector__, int)' ../GDALmake.opt:582: recipe for target 'gdaldither.o' failed gmake[1]: *** [gdaldither.o] Error 1 PR: 205701 Submitted by: myself Approved by: maintainer timeout Modified: head/graphics/gdal/Makefile Modified: head/graphics/gdal/Makefile ============================================================================== --- head/graphics/gdal/Makefile Wed Jan 13 15:42:39 2016 (r406051) +++ head/graphics/gdal/Makefile Wed Jan 13 15:52:17 2016 (r406052) @@ -30,7 +30,7 @@ OPTIONS_RADIO_PDF= PODOFO POPPLER PCRE_DESC= Regular expression support for SQLite SPATIALITE_DESC=SpatiaLite support -CFLAGS+= -fPIC +CFLAGS+= -fPIC -flax-vector-conversions CONFIGURE_ARGS= --datadir=${DATADIR} \ --enable-static=yes \ --with-geotiff=${LOCALBASE} \