pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/net/udns
Module Name: pkgsrc
Committed By: maya
Date: Tue Apr 8 02:26:46 UTC 2025
Modified Files:
pkgsrc/net/udns: Makefile
Log Message:
udns: fix gcc14 build on linux (fedora)
This package uses configure scripts that trip on newly fatal GCC warnings
and ends up with a configure failure/unbuildable package.
Disable newly fatal errors.
To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 pkgsrc/net/udns/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/net/udns/Makefile
diff -u pkgsrc/net/udns/Makefile:1.13 pkgsrc/net/udns/Makefile:1.14
--- pkgsrc/net/udns/Makefile:1.13 Sat Apr 24 08:37:49 2021
+++ pkgsrc/net/udns/Makefile Tue Apr 8 02:26:46 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2021/04/24 08:37:49 wiz Exp $
+# $NetBSD: Makefile,v 1.14 2025/04/08 02:26:46 maya Exp $
DISTNAME= udns-0.4
PKGREVISION= 1
@@ -35,6 +35,13 @@ do-install:
CFLAGS.SunOS+= -DHAVE_INET_PTON_NTOP
LDFLAGS.SunOS+= -lsocket -lnsl
+.include "../../mk/compiler.mk"
+.if !empty(PKGSRC_COMPILER:Mgcc)
+CFLAGS+= -Wno-error=implicit-function-declaration
+CFLAGS+= -Wno-error=incompatible-pointer-types
+CFLAGS+= -Wno-error=int-conversion
+.endif
+
.include "../../mk/bsd.pkg.mk"
# gcc on NetBSD botch's if (!<ptr>) tests at -O2. (or higher)
Home |
Main Index |
Thread Index |
Old Index