From owner-freebsd-ports@freebsd.org Tue Jun 21 21:59:10 2016 Return-Path: Delivered-To: freebsd-ports@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 9B282AC5516 for ; Tue, 21 Jun 2016 21:59:10 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) Received: from taro-2.utanet.at (taro.utanet.at [IPv6:2001:938:1337:25::25:45]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2F4CC25F8 for ; Tue, 21 Jun 2016 21:59:09 +0000 (UTC) (envelope-from w.schwarzenfeld@utanet.at) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=utanet.at; s=rev1; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:MIME-Version:Date:Message-ID:From:Subject:References:To; bh=5i66o5E0amU5IyxKjyAAU7zX78DG1brgf6tjro5aqCU=; b=NWQ0786ZYC81KGZKTZB0wdyY0RuJFSy7zucQYbp4SUwgHhfmyzPI/EeVnSrcYq/8s42hojWfB5OFAhgopZhsVWOu+aLqInwOttMlDhwEFERTM+cXWixR2eAaBa+9E3OLEbrZOyZcUhItx8ch5T5HB9mXKjJeoCnA7qrc4OEaLPk=; Received: from plenty.xoc.tele2net.at ([213.90.36.8]) by taro.utanet.at with esmtp (Exim 4.80) (envelope-from ) id 1bFThL-0003HL-AG for freebsd-ports@freebsd.org; Tue, 21 Jun 2016 23:59:07 +0200 Received: from 193-80-186-65.adsl.highway.telekom.at ([193.80.186.65] helo=[10.0.0.93]) by plenty.xoc.tele2net.at with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1bFThL-0001PR-7D for freebsd-ports@freebsd.org; Tue, 21 Jun 2016 23:59:07 +0200 To: freebsd-ports@freebsd.org References: Subject: Re: iozone3-434 fails to rebuild From: Walter Schwarzenfeld Message-ID: Date: Tue, 21 Jun 2016 23:59:06 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Jun 2016 21:59:10 -0000 Proposed patch: Index: files/patch-iozone.c =================================================================== --- files/patch-iozone.c (revision 417289) +++ files/patch-iozone.c (nonexistent) @@ -1,27 +0,0 @@ ---- iozone.c.orig 2015-10-20 14:12:13 UTC -+++ iozone.c -@@ -360,6 +360,7 @@ typedef off_t off64_t; - #ifndef SCO_Unixware_gcc - #ifndef UWIN - #ifndef __DragonFly__ -+#ifndef __FreeBSD__ - typedef long long off64_t; - #endif - #endif -@@ -369,6 +370,7 @@ typedef long long off64_t; - #endif - #endif - #endif -+#endif - - #ifdef __AIX__ - #include -@@ -23009,7 +23011,7 @@ char *shell; - #ifdef _HPUX_SOURCE - strcpy(shell,"remsh"); - #else -- strcpy(shell,"rsh"); -+ strcpy(shell,"ssh"); - #endif - return; - } Property changes on: files/patch-iozone.c ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: files/patch-libasync.c =================================================================== --- files/patch-libasync.c (revision 417289) +++ files/patch-libasync.c (nonexistent) @@ -1,36 +0,0 @@ ---- libasync.c.orig 2015-10-20 14:12:13 UTC -+++ libasync.c -@@ -96,13 +96,13 @@ - - #include - #include --#if defined(solaris) || defined(linux) || defined(SCO_Unixware_gcc) || defined(__NetBSD__) -+#if defined(solaris) || defined(linux) || defined(SCO_Unixware_gcc) || defined(__NetBSD__) || defined(__FreeBSD__) - #else - #include - #endif - #include - #include --#ifndef bsd4_4 -+#if !defined(bsd4_4) && !defined(__FreeBSD__) - #include - #endif - #ifdef VXFS -@@ -119,7 +119,7 @@ - #include - #endif - --#if (defined(solaris) && defined(__LP64__)) || defined(__s390x__) || defined(FreeBSD) || defined(__NetBSD__) -+#if (defined(solaris) && defined(__LP64__)) || defined(__s390x__) || defined(__FreeBSD__) || defined(__NetBSD__) - /* If we are building for 64-bit Solaris, all functions that return pointers - * must be declared before they are used; otherwise the compiler will assume - * that they return ints and the top 32 bits of the pointer will be lost, -@@ -135,7 +135,7 @@ - void mbcopy(char *source, char *dest, size_t len); - - --#if !defined(solaris) && !defined(off64_t) && !defined(_OFF64_T) && !defined(__off64_t_defined) && !defined(SCO_Unixware_gcc) -+#if !defined(solaris) && !defined(off64_t) && !defined(_OFF64_T) && !defined(__off64_t_defined) && !defined(SCO_Unixware_gcc) && !defined(__FreeBSD__) - typedef long long off64_t; - #endif - #if defined(OSFV5) Property changes on: files/patch-libasync.c ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property