From owner-svn-ports-head@freebsd.org Tue Dec 12 18:17:42 2017 Return-Path: Delivered-To: svn-ports-head@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 41BDCEA18EF; Tue, 12 Dec 2017 18:17:42 +0000 (UTC) (envelope-from asomers@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7D9B169987; Tue, 12 Dec 2017 18:17:41 +0000 (UTC) (envelope-from asomers@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBCIHeMG096077; Tue, 12 Dec 2017 18:17:40 GMT (envelope-from asomers@FreeBSD.org) Received: (from asomers@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBCIHeON096076; Tue, 12 Dec 2017 18:17:40 GMT (envelope-from asomers@FreeBSD.org) Message-Id: <201712121817.vBCIHeON096076@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: asomers set sender to asomers@FreeBSD.org using -f From: Alan Somers Date: Tue, 12 Dec 2017 18:17:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456179 - head/shells/fish/files X-SVN-Group: ports-head X-SVN-Commit-Author: asomers X-SVN-Commit-Paths: head/shells/fish/files X-SVN-Commit-Revision: 456179 X-SVN-Commit-Repository: ports 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.25 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: Tue, 12 Dec 2017 18:17:42 -0000 Author: asomers (src committer) Date: Tue Dec 12 18:17:40 2017 New Revision: 456179 URL: https://svnweb.freebsd.org/changeset/ports/456179 Log: shells/fish: fix 2.7.0 build for arm and arm64 PR: 224254 Reported by: marcel@herrbischoff.com Sponsored by: Spectra Logic Corp Added: head/shells/fish/files/ head/shells/fish/files/patch-src_wgetopt.h (contents, props changed) Added: head/shells/fish/files/patch-src_wgetopt.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/fish/files/patch-src_wgetopt.h Tue Dec 12 18:17:40 2017 (r456179) @@ -0,0 +1,11 @@ +--- src/wgetopt.h.orig 2017-12-11 21:47:12 UTC ++++ src/wgetopt.h +@@ -177,7 +177,7 @@ struct woption { + int *flag; + /// If \c flag is non-null, this is the value that flag will be set to. Otherwise, this is the + /// return-value of the function call. +- int val; ++ wchar_t val; + }; + + // Names for the values of the `has_arg' field of `struct option'.