From owner-svn-ports-head@FreeBSD.ORG Wed Oct 23 12:06:05 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 6E667E27; Wed, 23 Oct 2013 12:06:05 +0000 (UTC) (envelope-from makc@FreeBSD.org) 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 5BB4F299D; Wed, 23 Oct 2013 12:06:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9NC656j056712; Wed, 23 Oct 2013 12:06:05 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9NC65NN056711; Wed, 23 Oct 2013 12:06:05 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201310231206.r9NC65NN056711@svn.freebsd.org> From: Max Brazhnikov Date: Wed, 23 Oct 2013 12:06:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r331376 - head/math/scilab/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-head@freebsd.org X-Mailman-Version: 2.1.14 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, 23 Oct 2013 12:06:05 -0000 Author: makc Date: Wed Oct 23 12:06:04 2013 New Revision: 331376 URL: http://svnweb.freebsd.org/changeset/ports/331376 Log: - Fix build after hdf5-18 update Submitted by: truckman via ports maillist Added: head/math/scilab/files/patch-configure (contents, props changed) Added: head/math/scilab/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/scilab/files/patch-configure Wed Oct 23 12:06:04 2013 (r331376) @@ -0,0 +1,20 @@ +--- ./configure.orig 2011-07-20 08:15:42.000000000 +0000 ++++ ./configure 2013-10-23 11:59:48.722499060 +0000 +@@ -12281,14 +12281,15 @@ + + public class conftest { + public static void main(String[] argv) { +- String minVersion="1.8.4"; ++ int minVersion=10804; + int[] vers = new int[3]; + try { H5.H5get_libversion(vers); } + catch (Throwable ex) {System.exit(-1);} + String ver = vers[0] + "."+ vers[1] +"."+vers[2]; ++ int Version = 10000*vers[0] + 100*vers[1] + vers[2]; + + System.out.println(ver); +- if (minVersion.compareTo(ver) != 0) { ++ if (minVersion > Version) { + System.exit(-1); + } +