:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=bldV11NiIFP8JZzqM7vJoujJJ/mX6Nkt9Btp3/XACp4=; b=qsbhx0sFkHhDLnWdk39rpZsfREzGKnvaLN8grxwYXRtt1srOY7HdMkPMXorlDkhm9sLsTm zaXhuqyCom4nrWt9+LRWTQsHQQ/Rd/IxFnxzz1int4usfyh3Z2Ezg/HwO0D26U4cW6DQyu ERYIS2bhfUJTaf6Wyga9AWq8MHSUd67MLt2YpQ1IlXoH79W8KwH0MjvJM0KMdC7OKMUmk8 ESpwiN1Hd624nZQbcuAx1e5OUSmh/6igW0YtTbAHgarnmbERV7AeMbKWm56gmzAVn/aJtF F4kERRWTMcos9+1vaJLVxrNQ4dTxa4aHsKXUm/UrkU/37TxCEKZ042Q2lHm7fQ== Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) by mxrelay.nyi.freebsd.org (Postfix) with ESMTP id 4frPdV0Z17zDYr for ; Wed, 08 Apr 2026 13:52:30 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from git (uid 1279) (envelope-from git@FreeBSD.org) id 3a568 by gitrepo.freebsd.org (DragonFly Mail Agent v0.13+ on gitrepo.freebsd.org); Wed, 08 Apr 2026 13:52:30 +0000 To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Cy Schubert Subject: git: fa43a93555ef - main - x11/cde*: Work around bus errors and looping CDE apps 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: X-BeenThere: dev-commits-ports-main@freebsd.org Sender: owner-dev-commits-ports-main@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: cy X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: fa43a93555ef08544bc2139af3411e00797c70dd Auto-Submitted: auto-generated Date: Wed, 08 Apr 2026 13:52:30 +0000 Message-Id: <69d65d9e.3a568.585871d9@gitrepo.freebsd.org> The branch main has been updated by cy: URL: https://cgit.FreeBSD.org/ports/commit/?id=fa43a93555ef08544bc2139af3411e00797c70dd commit fa43a93555ef08544bc2139af3411e00797c70dd Author: Cy Schubert AuthorDate: 2026-04-08 03:40:57 +0000 Commit: Cy Schubert CommitDate: 2026-04-08 13:51:50 +0000 x11/cde*: Work around bus errors and looping CDE apps -O2 optimization is too aggressive for CDE. Scaling it back to -O eliminates bus errors on some systems and dtcalc looping with the error, *** M .LE. T IN CALL TO MPCHK. Reported by: Jeremy Doolin MFH: 2026Q2 --- x11/cde-devel/Makefile | 3 ++- x11/cde/Makefile | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/x11/cde-devel/Makefile b/x11/cde-devel/Makefile index 20f8dd4871e7..1c11bff3b135 100644 --- a/x11/cde-devel/Makefile +++ b/x11/cde-devel/Makefile @@ -1,5 +1,6 @@ PORTNAME= cde PORTVERSION= ${COMMIT_DATE} +PORTREVISION= 1 CATEGORIES= x11 .if !defined(MASTERDIR) PKGNAMESUFFIX= -devel @@ -62,7 +63,7 @@ MAKE_ARGS+= PERL=${PERL} "LOCAL_LDFLAGS=${LDFLAGS}" MAKE_JOBS_UNSAFE=yes MAKE_ENV= MALLOC_CONF=junk:false SUB_FILES= pkg-message -CFLAGS+= -Wno-register -Wno-incompatible-function-pointer-types \ +CFLAGS+= -O -Wno-register -Wno-incompatible-function-pointer-types \ -Wno-implicit-function-declaration LDFLAGS+= -z muldefs #--allow-multiple-definition diff --git a/x11/cde/Makefile b/x11/cde/Makefile index ac1c288a69ff..f662564795f5 100644 --- a/x11/cde/Makefile +++ b/x11/cde/Makefile @@ -1,5 +1,6 @@ PORTNAME= cde DISTVERSION= 2.5.3 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= SF/cdesktopenv/src/ @@ -52,7 +53,7 @@ MAKE_ARGS+= PERL=${PERL} "LOCAL_LDFLAGS=${LDFLAGS}" MAKE_JOBS_UNSAFE=yes MAKE_ENV= MALLOC_CONF=junk:false SUB_FILES= pkg-message -CFLAGS+= -Wno-register -Wno-incompatible-function-pointer-types \ +CFLAGS+= -O -Wno-register -Wno-incompatible-function-pointer-types \ -Wno-implicit-function-declaration LDFLAGS+= -z muldefs #--allow-multiple-definition LDFLAGS+= -lutil