From owner-svn-ports-all@FreeBSD.ORG Fri Feb 8 08:24:19 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]) by hub.freebsd.org (Postfix) with ESMTP id 0B8715AE; Fri, 8 Feb 2013 08:24:19 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id F2B82C21; Fri, 8 Feb 2013 08:24:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r188OI8s011504; Fri, 8 Feb 2013 08:24:18 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r188OIvF011502; Fri, 8 Feb 2013 08:24:18 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201302080824.r188OIvF011502@svn.freebsd.org> From: Martin Wilke Date: Fri, 8 Feb 2013 08:24:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r311918 - in head/lang/polyml: . 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-all@freebsd.org X-Mailman-Version: 2.1.14 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: Fri, 08 Feb 2013 08:24:19 -0000 Author: miwi Date: Fri Feb 8 08:24:18 2013 New Revision: 311918 URL: http://svnweb.freebsd.org/changeset/ports/311918 Log: - Fix a segfault on startup - While here trim header PR: ports/173446 Submitted by: Imre Vadasz Approved by: maintainer Added: head/lang/polyml/files/ head/lang/polyml/files/patch-elfexport.h (contents, props changed) Modified: head/lang/polyml/Makefile (contents, props changed) Modified: head/lang/polyml/Makefile ============================================================================== --- head/lang/polyml/Makefile Fri Feb 8 08:10:15 2013 (r311917) +++ head/lang/polyml/Makefile Fri Feb 8 08:24:18 2013 (r311918) @@ -1,12 +1,9 @@ -# New ports collection makefile for: polyml -# Date created: 09 July 2005 -# Whom: Timothy Bourke -# +# Created by: Timothy Bourke # $FreeBSD$ -# PORTNAME= polyml PORTVERSION= 5.4.1 +PORTREVISION= 1 CATEGORIES= lang MASTER_SITES= SF DISTNAME= ${PORTNAME}.${PORTVERSION} Added: head/lang/polyml/files/patch-elfexport.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/polyml/files/patch-elfexport.h Fri Feb 8 08:24:18 2013 (r311918) @@ -0,0 +1,11 @@ +--- libpolyml/elfexport.h.orgi 2013-02-08 16:01:09.000000000 +0800 ++++ libpolyml/elfexport.h 2013-02-08 16:01:43.000000000 +0800 +@@ -37,7 +37,7 @@ + #define ElfXX_Sym Elf64_Sym + #define ElfXX_Ehdr Elf64_Ehdr + #define ElfXX_Shdr Elf64_Shdr +-#define ELFXX_R_INFO(_y, _z) ELF64_R_INFO(_y, _z) ++#define ELFXX_R_INFO(_y, _z) ELF64_R_INFO((Elf64_Xword)(_y), _z) + #define ELFXX_ST_INFO(_y, _z) ELF64_ST_INFO(_y, _z) + #define ELFCLASSXX ELFCLASS64 + #else