Received: by mail.netbsd.org (Postfix, from userid 605) id B567C84D7E; Fri, 19 Feb 2021 12:50:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id F108384D0D for ; Fri, 19 Feb 2021 12:50:13 +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 fRG-v1lB7_Bh for ; Fri, 19 Feb 2021 12:50:13 +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 47A1184C71 for ; Fri, 19 Feb 2021 12:50:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3BADEFA95; Fri, 19 Feb 2021 12:50:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_161373901328620" MIME-Version: 1.0 Date: Fri, 19 Feb 2021 12:50:13 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/lang/erlang To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20210219125013.3BADEFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_161373901328620 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Fri Feb 19 12:50:13 UTC 2021 Modified Files: pkgsrc/lang/erlang: options.mk Log Message: erlang: Fix SunOS build. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/lang/erlang/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_161373901328620 Content-Disposition: inline Content-Length: 1077 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/erlang/options.mk diff -u pkgsrc/lang/erlang/options.mk:1.11 pkgsrc/lang/erlang/options.mk:1.12 --- pkgsrc/lang/erlang/options.mk:1.11 Mon Nov 18 20:46:01 2019 +++ pkgsrc/lang/erlang/options.mk Fri Feb 19 12:50:13 2021 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.11 2019/11/18 20:46:01 nia Exp $ +# $NetBSD: options.mk,v 1.12 2021/02/19 12:50:13 jperkin Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.erlang PKG_SUPPORTED_OPTIONS= java erlang-hipe @@ -12,7 +12,7 @@ PKG_SUGGESTED_OPTIONS= # empty ### .if (${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64") && \ (${OPSYS} == "FreeBSD" || ${OPSYS} == "Linux" || \ - ${OPSYS} == "NetBSD" || ${OPSYS} == "OpenBSD") + ${OPSYS} == "NetBSD" || ${OPSYS} == "OpenBSD" || ${OPSYS} == "SunOS") PKG_SUGGESTED_OPTIONS+= erlang-hipe .endif @@ -38,7 +38,7 @@ CONFIGURE_ARGS+= --without-javac .if !empty(PKG_OPTIONS:Merlang-hipe) CONFIGURE_ARGS+= --enable-hipe PLIST_SRC+= PLIST.hipe -USE_TOOLS+= m4 +USE_TOOLS+= gm4 # needs -P .else CONFIGURE_ARGS+= --disable-hipe .endif --_----------=_161373901328620--