From owner-freebsd-ports@freebsd.org Tue Jun 21 19:07:09 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 4A257AC5881 for ; Tue, 21 Jun 2016 19:07:09 +0000 (UTC) (envelope-from kpaasial@gmail.com) Received: from mail-ob0-x22d.google.com (mail-ob0-x22d.google.com [IPv6:2607:f8b0:4003:c01::22d]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0C4532929 for ; Tue, 21 Jun 2016 19:07:09 +0000 (UTC) (envelope-from kpaasial@gmail.com) Received: by mail-ob0-x22d.google.com with SMTP id c3so37081475obc.2 for ; Tue, 21 Jun 2016 12:07:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=abjg6x5R/K73vsjWC7vJTi0TODmEeEo3bYTHpOG0bxk=; b=e5784P1xaH0Vu+A1QoMuTbTexIU0D7PEj7bqKSQX2qY5ObUrmvAASHYHL0j2ryH7Rq YoSdoMY077wPZfWHVVJFmJS7z2C+55xrUGmJTIuYtqopYJIOhdpJN3Qr0dop9B8ZIBcn p4wILOWrEXqWAL4oNyljj0A3+4ncQ9ZTvSeSBBpLwQQ3uH2I6IsfdB/7NNMzqwy4WyJv 41NxgUJVNChFQxyy9uhsNlqPOAymLdUvimcHpPgoiUtss6pD+Mk1tRCpE9xBx81BvRY+ NzTZzi7iBrShfrHaqlns0+pcqS/DnFuaF7YA5tFaWeKYc9WHj0taFnoqTmxEzQ8qRork H0Hw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=abjg6x5R/K73vsjWC7vJTi0TODmEeEo3bYTHpOG0bxk=; b=TMGUjaEu0nR8gmf3dZQz7QHv3KNbFEaRamRdwAb2A/7h9yqYHj83ek1KH2ZACPDhdX mUsdqAjnXbLFL7Z0UOEs+5Od1F/q8eKE9A83YCf64BB2dfDtL7KErZL0vM9tezcwHS/N J9a3ThQWlUBhswyeFji/x1PiB3f42hOEEXt5v2mmg9LxpfcWhWHC4ItvHwnrG9WEPP2G MP9XFEYwoMEx2ukNhCDhIH1xdajRblmghKyFR9IE/HlDOTq+ecbmxbvwh/YZ5lC1+3Fl MECbEh4qktw0y2C0yPsbFMmCctmhAoVegguIObSNKW0xik4FSsBQpina9oZvgyg2fUaB RUug== X-Gm-Message-State: ALyK8tJwR/CjN6Y15kZdHXeTTZs6AxXbV2lW7Pc4z+t+HtH2l6TECE0x8SaY0tRDNnfCexEa7kj8fRbiNcABRA== X-Received: by 10.157.14.174 with SMTP id 43mr16215815otj.83.1466536028310; Tue, 21 Jun 2016 12:07:08 -0700 (PDT) MIME-Version: 1.0 Received: by 10.157.16.76 with HTTP; Tue, 21 Jun 2016 12:07:07 -0700 (PDT) In-Reply-To: References: From: Kimmo Paasiala Date: Tue, 21 Jun 2016 22:07:07 +0300 Message-ID: Subject: Re: iozone3-434 fails to rebuild To: Doug Sampson Cc: "freebsd-ports@freebsd.org" Content-Type: text/plain; charset=UTF-8 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 19:07:09 -0000 On Tue, Jun 21, 2016 at 9:32 PM, Doug Sampson wrote: > Trying to rebuild iozone after a recent port upgrade and it crashes as follows: > > ### > <...snip...> > iozone.c:1297:1: error: unknown type name 'off64_t'; did you mean 'off_t'? > off64_t offset = 0; /*offset for random I/O */ > ^~~~~~~ > off_t > /usr/include/sys/types.h:173:18: note: 'off_t' declared here > typedef __off_t off_t; /* file offset */ > ^ > iozone.c:1298:1: error: unknown type name 'off64_t'; did you mean 'off_t'? > off64_t offset64 = 0; /*offset for random I/O */ > ^~~~~~~ > off_t > /usr/include/sys/types.h:173:18: note: 'off_t' declared here > typedef __off_t off_t; /* file offset */ > ^ > iozone.c:1299:1: error: unknown type name 'off64_t'; did you mean 'off_t'? > off64_t filebytes64; > ^~~~~~~ > off_t > /usr/include/sys/types.h:173:18: note: 'off_t' declared here > typedef __off_t off_t; /* file offset */ > ^ > fatal error: too many errors emitted, stopping now [-ferror-limit=] > 2 warnings and 20 errors generated. > *** Error code 1 > > Stop. > make[2]: stopped in /usr/ports/benchmarks/iozone/work/iozone3_434/src/current > *** Error code 1 > > Stop. > make[1]: stopped in /usr/ports/benchmarks/iozone > *** Error code 1 > > Stop. > make: stopped in /usr/ports/benchmarks/iozone > root@pisces:/usr/ports/benchmarks/iozone# > ### > > root@pisces:/usr/ports/benchmarks/iozone# make showconfig > ===> The following configuration options are available for iozone-3.434: > SSH=on: Use ssh in distributed measurement > THREADS=on: Enable threading (uses pthreads) > ===> Use 'make config' to modify these settings > root@pisces:/usr/ports/benchmarks/iozone# > > Doesn't matter which config options I select/deselect, it still fails to rebuild. It occurs on both 10.3-RELEASE-p4 i386 and 10.3-RELEASE-p4 amd64 systems. > > > ~Doug > _______________________________________________ Same here on 10.3-RELEASE. I wonder how the port got updated with sponsorship from "Gandi.net", yet the committed changes were apparently not tested? Shouldn't Gandi.net volunteer as the maintainer for the port if they want it to be updated (the port is unmaintained at the moment)? -Kimmo