pkgsrc-Changes archive

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

CVS commit: pkgsrc/converters/uulib



Module Name:    pkgsrc
Committed By:   wiz
Date:           Tue Oct  7 08:48:08 UTC 2025

Modified Files:
        pkgsrc/converters/uulib: Makefile distinfo
Added Files:
        pkgsrc/converters/uulib/patches: patch-uulib_configure

Log Message:
uulib: fix build with gcc 14


To generate a diff of this commit:
cvs rdiff -u -r1.46 -r1.47 pkgsrc/converters/uulib/Makefile
cvs rdiff -u -r1.17 -r1.18 pkgsrc/converters/uulib/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/converters/uulib/patches/patch-uulib_configure

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

Modified files:

Index: pkgsrc/converters/uulib/Makefile
diff -u pkgsrc/converters/uulib/Makefile:1.46 pkgsrc/converters/uulib/Makefile:1.47
--- pkgsrc/converters/uulib/Makefile:1.46       Sat Nov 16 22:22:45 2019
+++ pkgsrc/converters/uulib/Makefile    Tue Oct  7 08:48:08 2025
@@ -1,5 +1,4 @@
-# $NetBSD: Makefile,v 1.46 2019/11/16 22:22:45 rhialto Exp $
-#
+# $NetBSD: Makefile,v 1.47 2025/10/07 08:48:08 wiz Exp $
 
 DISTNAME=      uudeview-0.5.20
 PKGNAME=       uulib-0.5.20
@@ -16,6 +15,8 @@ CONFIGURE_DIRS=       uulib
 BUILD_DIRS=    uulib
 USE_LIBTOOL=   yes
 
+CFLAGS+=       -DSTDC_HEADERS=1
+
 BUILD_TARGET=  libuu.la
 
 DOCFILES=      HISTORY doc/Makefile doc/README doc/binhex.fig \

Index: pkgsrc/converters/uulib/distinfo
diff -u pkgsrc/converters/uulib/distinfo:1.17 pkgsrc/converters/uulib/distinfo:1.18
--- pkgsrc/converters/uulib/distinfo:1.17       Tue Oct 26 10:06:53 2021
+++ pkgsrc/converters/uulib/distinfo    Tue Oct  7 08:48:08 2025
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.17 2021/10/26 10:06:53 nia Exp $
+$NetBSD: distinfo,v 1.18 2025/10/07 08:48:08 wiz Exp $
 
 BLAKE2s (uudeview-0.5.20.tar.gz) = 0893e955d425f82a78a0be2feea7d9ac9b926dfbdeb3bdec580a32e9a616df7d
 SHA512 (uudeview-0.5.20.tar.gz) = d080e9c3940bad7bacd28457f21133056384a01e33ba014de42502d23f81f2c7f5fa7f6c472ce9f37bec2edb8e18d27135bf18426cf2f23188a3683558e1721c
@@ -6,4 +6,5 @@ Size (uudeview-0.5.20.tar.gz) = 261574 b
 SHA1 (patch-aa) = 2f495c982bb8a96ffd60f1bcd4ce65e6c226083c
 SHA1 (patch-ab) = f23ca7945a0697dc8e49ba9c7765bfa655ed8566
 SHA1 (patch-ac) = e167fedf6ca5933d027407715c4275d60d1ee795
+SHA1 (patch-uulib_configure) = 2ff2d83ab3dcc3855164f1945cc866e0f84c1cdc
 SHA1 (patch-uulib_uulib.c) = fcfc3b3450f49a58b827553c8588abf09dfb2310

Added files:

Index: pkgsrc/converters/uulib/patches/patch-uulib_configure
diff -u /dev/null pkgsrc/converters/uulib/patches/patch-uulib_configure:1.1
--- /dev/null   Tue Oct  7 08:48:08 2025
+++ pkgsrc/converters/uulib/patches/patch-uulib_configure       Tue Oct  7 08:48:08 2025
@@ -0,0 +1,15 @@
+$NetBSD: patch-uulib_configure,v 1.1 2025/10/07 08:48:08 wiz Exp $
+
+Add return type to fix build with gcc 14.
+
+--- uulib/configure.orig       2025-10-07 08:47:21.618141297 +0000
++++ uulib/configure
+@@ -660,7 +660,7 @@ cat > conftest.$ac_ext << EOF
+ #line 661 "configure"
+ #include "confdefs.h"
+ 
+-main(){return(0);}
++int main(){return(0);}
+ EOF
+ if { (eval echo configure:666: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+   ac_cv_prog_cc_works=yes



Home | Main Index | Thread Index | Old Index