pkgsrc-Changes archive

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

CVS commit: pkgsrc/editors/pico



Module Name:    pkgsrc
Committed By:   pgoyette
Date:           Sat Nov 15 13:41:07 UTC 2025

Modified Files:
        pkgsrc/editors/pico: Makefile distinfo
        pkgsrc/editors/pico/patches: patch-aj

Log Message:
Deal with gcc14


To generate a diff of this commit:
cvs rdiff -u -r1.82 -r1.83 pkgsrc/editors/pico/Makefile
cvs rdiff -u -r1.29 -r1.30 pkgsrc/editors/pico/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/editors/pico/patches/patch-aj

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

Modified files:

Index: pkgsrc/editors/pico/Makefile
diff -u pkgsrc/editors/pico/Makefile:1.82 pkgsrc/editors/pico/Makefile:1.83
--- pkgsrc/editors/pico/Makefile:1.82   Mon Apr 21 20:16:11 2025
+++ pkgsrc/editors/pico/Makefile        Sat Nov 15 13:41:07 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.82 2025/04/21 20:16:11 wiz Exp $
+# $NetBSD: Makefile,v 1.83 2025/11/15 13:41:07 pgoyette Exp $
 #
 # NOTE:
 # When updating, it is necessary to change the shlib version, located in
@@ -21,6 +21,12 @@ LICENSE=     pine-license
 
 USE_LIBTOOL=           yes
 
+.include "../../mk/compiler.mk"
+.if !empty(CC_VERSION:Mgcc-14.*) || !empty(CC_VERSION:Mgcc-15.*)
+CFLAGS+=       -Wno-error=implicit-function-declaration
+CFLAGS+=       -Wno-error=implicit-int
+.endif
+
 .include "../../mk/bsd.prefs.mk"
 
 OPSYSVARS+=            BUILDNAME

Index: pkgsrc/editors/pico/distinfo
diff -u pkgsrc/editors/pico/distinfo:1.29 pkgsrc/editors/pico/distinfo:1.30
--- pkgsrc/editors/pico/distinfo:1.29   Tue Oct 26 10:21:38 2021
+++ pkgsrc/editors/pico/distinfo        Sat Nov 15 13:41:07 2025
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.29 2021/10/26 10:21:38 nia Exp $
+$NetBSD: distinfo,v 1.30 2025/11/15 13:41:07 pgoyette Exp $
 
 BLAKE2s (pine4.64.tar.bz2) = 94655ed08c9042a77b3ed8348fae0e2916bd4e4ae4a7b793d6b325698150dd94
 SHA512 (pine4.64.tar.bz2) = a5d62ad26fcd6d832441416dd3f781637dde61899cac5018e07232a7f80461f78d2efb4538be06e03792c1950181242fe0b1a5dc89737e05ea525cc7d37614c6
@@ -11,4 +11,4 @@ SHA1 (patch-af) = 59cc95b758dbdd03848bd3
 SHA1 (patch-ag) = 21c6474fed212cd3c45cf210d9b879c96ed4f0b8
 SHA1 (patch-ah) = bc26f6e3d7aed7e718ae924f0f348f448d495864
 SHA1 (patch-ai) = 7e2a70ee4322aa85de80089c2e4470ec12bfe110
-SHA1 (patch-aj) = fc44b6786797184c4323b40aa2a73960cc421f2d
+SHA1 (patch-aj) = f5355f0053e8ed38eb66c7fda3e56e4ea9e47ca2

Index: pkgsrc/editors/pico/patches/patch-aj
diff -u pkgsrc/editors/pico/patches/patch-aj:1.1 pkgsrc/editors/pico/patches/patch-aj:1.2
--- pkgsrc/editors/pico/patches/patch-aj:1.1    Thu Nov 26 00:10:42 2009
+++ pkgsrc/editors/pico/patches/patch-aj        Sat Nov 15 13:41:07 2025
@@ -1,13 +1,22 @@
-$NetBSD: patch-aj,v 1.1 2009/11/26 00:10:42 joerg Exp $
+$NetBSD: patch-aj,v 1.2 2025/11/15 13:41:07 pgoyette Exp $
 
 --- pico/osdep/makefile.orig   2009-11-26 01:05:39.000000000 +0100
 +++ pico/osdep/makefile
-@@ -21,7 +21,7 @@ ALL= os-a32.c os-a41.c os-aix.c \
+@@ -2,6 +2,8 @@
+ #
+
+ RM=  rm -f
++CFLAGS+=      -Wno-error=implicit-int
++CFLAGS+=      -Wno-error=implicit-function-declaration
+
+ ALL=  os-a32.c os-a41.c os-aix.c \
+       os-aux.c os-bs2.c os-bsd.c os-bsf.c os-bsi.c os-bso.c \
+@@ -21,7 +23,7 @@ ALL= os-a32.c os-a41.c os-aix.c \
  all:          includer $(ALL)
  
  includer:     includer.c
 -              $(CC) -o includer includer.c
-+              $(LDCC) -o includer includer.c
++              $(LDCC) $(CFLAGS) -o includer includer.c
  
  clean:
                $(RM) $(ALL) includer



Home | Main Index | Thread Index | Old Index