Received: by mail.netbsd.org (Postfix, from userid 605) id 095AB84EBC; Fri, 26 Jan 2024 03:17:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3865584D08 for ; Fri, 26 Jan 2024 03:17:08 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id HVCXZVbD78OR for ; Fri, 26 Jan 2024 03:17:07 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 8B49184CEB for ; Fri, 26 Jan 2024 03:17:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 87AD5FA42; Fri, 26 Jan 2024 03:17:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1706239027730" MIME-Version: 1.0 Date: Fri, 26 Jan 2024 03:17:07 +0000 From: "Taylor R Campbell" Subject: CVS commit: pkgsrc/multimedia/ffmpeg5 To: pkgsrc-changes@NetBSD.org Reply-To: riastradh@netbsd.org X-Mailer: log_accum Message-Id: <20240126031707.87AD5FA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1706239027730 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: riastradh Date: Fri Jan 26 03:17:07 UTC 2024 Modified Files: pkgsrc/multimedia/ffmpeg5: Makefile Log Message: multimedia/ffmpeg5: Handle cross-builds to big-endian. To generate a diff of this commit: cvs rdiff -u -r1.28 -r1.29 pkgsrc/multimedia/ffmpeg5/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1706239027730 Content-Disposition: inline Content-Length: 844 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/multimedia/ffmpeg5/Makefile diff -u pkgsrc/multimedia/ffmpeg5/Makefile:1.28 pkgsrc/multimedia/ffmpeg5/Makefile:1.29 --- pkgsrc/multimedia/ffmpeg5/Makefile:1.28 Mon Jan 22 13:17:01 2024 +++ pkgsrc/multimedia/ffmpeg5/Makefile Fri Jan 26 03:17:07 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.28 2024/01/22 13:17:01 ryoon Exp $ +# $NetBSD: Makefile,v 1.29 2024/01/26 03:17:07 riastradh Exp $ PKGNAME= ${DISTNAME:S/ffmpeg/ffmpeg5/} PKGREVISION= 1 @@ -23,6 +23,10 @@ CONFIGURE_ARGS+= --enable-cross-compile CONFIGURE_ARGS+= --host-cc=${NATIVE_CC:Q} CONFIGURE_ARGS+= --host-ld=${NATIVE_CC:Q} CONFIGURE_ARGS+= --target-os=${LOWER_OPSYS} +. include "../../mk/endian.mk" +. if ${MACHINE_ENDIAN} == "big" +CONFIGURE_ENV+= bigendian=yes +. endif .endif PRINT_PLIST_AWK+= /html/ { $$0 = "$${PLIST.doc}" $$0 } --_----------=_1706239027730--