From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 8 08:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.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 469608FB for ; Fri, 8 Feb 2013 08:30:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 21CFFD3F for ; Fri, 8 Feb 2013 08:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r188U1xW030272 for ; Fri, 8 Feb 2013 08:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r188U1r5030268; Fri, 8 Feb 2013 08:30:01 GMT (envelope-from gnats) Date: Fri, 8 Feb 2013 08:30:01 GMT Message-Id: <201302080830.r188U1r5030268@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/173446: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Feb 2013 08:30:01 -0000 The following reply was made to PR ports/173446; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/173446: commit references a PR Date: Fri, 8 Feb 2013 08:24:30 +0000 (UTC) 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 _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"