From nobody Mon Nov 22 09:09:50 2021 X-Original-To: dev-commits-ports-main@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 54D2018AEF15; Mon, 22 Nov 2021 09:09:51 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HyM0v1wHnz4rhs; Mon, 22 Nov 2021 09:09:51 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1EF3B1FAFB; Mon, 22 Nov 2021 09:09:51 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 1AM99oL9065709; Mon, 22 Nov 2021 09:09:50 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 1AM99o6R065708; Mon, 22 Nov 2021 09:09:50 GMT (envelope-from git) Date: Mon, 22 Nov 2021 09:09:50 GMT Message-Id: <202111220909.1AM99o6R065708@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Alexey Dokuchaev Subject: git: febd7f75524b - main - games/slade: pin wxWidgets version down to 3.0 (rather than 3.0+) List-Id: Commits to the main branch of the FreeBSD ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-main List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-main@freebsd.org X-BeenThere: dev-commits-ports-main@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: danfe X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: febd7f75524bc6a6ebde9fb3e3350279076cde71 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by danfe: URL: https://cgit.FreeBSD.org/ports/commit/?id=febd7f75524bc6a6ebde9fb3e3350279076cde71 commit febd7f75524bc6a6ebde9fb3e3350279076cde71 Author: Kyle Evans AuthorDate: 2021-11-22 09:07:06 +0000 Commit: Alexey Dokuchaev CommitDate: 2021-11-22 09:07:07 +0000 games/slade: pin wxWidgets version down to 3.0 (rather than 3.0+) Version 3.1 defaults to EGL (presumably for Wayland) and is incompatible with the GLEW we build at the moment (which defaults to GLX). Basically, because of this, the renderer craps out and crashes with v3.1. We don't really know what the ramifications are of swapping all of it to EGL, so just sticking with v3.0 seems safe for now. --- games/slade/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/games/slade/Makefile b/games/slade/Makefile index 4ca3232283de..02c38cd89e7d 100644 --- a/games/slade/Makefile +++ b/games/slade/Makefile @@ -2,7 +2,7 @@ PORTNAME= slade PORTVERSION= 3.1.13 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MAINTAINER= danfe@FreeBSD.org @@ -22,7 +22,7 @@ GH_ACCOUNT= sirjuddington GH_PROJECT= ${PORTNAME:tu} USES= cmake compiler:c++14-lang gl pkgconfig -USE_WX= 3.0+ +USE_WX= 3.0 USE_GL= gl glew glu CMAKE_ARGS= -DwxWidgets_CONFIG_EXECUTABLE:FILEPATH="${WX_CONFIG}" \