pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/sysutils/mtx



Module Name:    pkgsrc
Committed By:   nia
Date:           Sun Jun 14 15:31:53 UTC 2026

Modified Files:
        pkgsrc/sysutils/mtx: Makefile

Log Message:
mtx: Fails with C23 default language.

This time, because of defining its own true and false, rather than
because of K&R style declarations.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 pkgsrc/sysutils/mtx/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/sysutils/mtx/Makefile
diff -u pkgsrc/sysutils/mtx/Makefile:1.3 pkgsrc/sysutils/mtx/Makefile:1.4
--- pkgsrc/sysutils/mtx/Makefile:1.3    Sun Sep  3 08:37:00 2017
+++ pkgsrc/sysutils/mtx/Makefile        Sun Jun 14 15:31:53 2026
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2017/09/03 08:37:00 wiz Exp $
+# $NetBSD: Makefile,v 1.4 2026/06/14 15:31:53 nia Exp $
 
 DISTNAME=      mtx-1.3.12
 PKGREVISION=   1
@@ -8,10 +8,12 @@ MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:
 MAINTAINER=    bouyer%NetBSD.org@localhost
 #HOMEPAGE=     http://mtx.badtux.net/
 COMMENT=       Control SCSI media changer devices
+LICENSE=       gnu-gpl-v2
 
 USE_TOOLS+=    gmake 
 GNU_CONFIGURE= yes
 
-LICENSE=       gnu-gpl-v2
+# Defines its own boolean type which conflicts with C23 types.
+FORCE_C_STD=   gnu89
 
 .include "../../mk/bsd.pkg.mk"



Home | Main Index | Thread Index | Old Index