pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/libstroke



Module Name:    pkgsrc
Committed By:   mef
Date:           Wed Oct 15 02:59:02 UTC 2025

Modified Files:
        pkgsrc/devel/libstroke: Makefile

Log Message:
(devel/libstroke) interim fix for gcc-14.3.0 [-Wimplicit-int]

+# 1.
+# -----------------
+# with gcc-14.3.0
+# configure:1092:1: error: return type defaults to 'int' [-Wimplicit-int]
+# 1092 | main(){return(0);}
+#      | ^~~~
+# -----------------
+# 2.
+# -----------------
+#  ltconfig change does not make it
+# +++ ltconfig    2025-10-14 07:16:53.170304613 +0900
+# @@ -854,7 +854,7 @@ fi
+#
+#  echo $ac_n "checking if $compiler static flag $link_static_flag works... $ac_c" 1>&6
+#  $rm conftest*
+# -echo 'main(){return(0);}' > conftest.c
+# +echo 'int main(){return(0);}' > conftest.c
+# -----------------
+#3.
+# -----------------
+# with c90
+# stroke_test.c:72:1: error: C++ style comments are not allowed in ISO C90
+# -----------------
+FORCE_C_STD=           gnu90


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 pkgsrc/devel/libstroke/Makefile

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

Modified files:

Index: pkgsrc/devel/libstroke/Makefile
diff -u pkgsrc/devel/libstroke/Makefile:1.28 pkgsrc/devel/libstroke/Makefile:1.29
--- pkgsrc/devel/libstroke/Makefile:1.28        Thu Oct  9 14:06:10 2014
+++ pkgsrc/devel/libstroke/Makefile     Wed Oct 15 02:59:02 2025
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.28 2014/10/09 14:06:10 wiz Exp $
+# $NetBSD: Makefile,v 1.29 2025/10/15 02:59:02 mef Exp $
 
 DISTNAME=              libstroke-0.5.1
-PKGREVISION=           4
+PKGREVISION=           5
 CATEGORIES=            devel
 MASTER_SITES=          http://etla.net/libstroke/
 
@@ -12,6 +12,30 @@ COMMENT=             Stroke translation library
 GNU_CONFIGURE=         YES
 USE_LIBTOOL=           YES
 USE_TOOLS+=            gmake
+# 1.
+# -----------------
+# with gcc-14.3.0
+# configure:1092:1: error: return type defaults to 'int' [-Wimplicit-int]
+# 1092 | main(){return(0);}
+#      | ^~~~
+# -----------------
+# 2.
+# -----------------
+#  ltconfig change does not make it
+# +++ ltconfig    2025-10-14 07:16:53.170304613 +0900
+# @@ -854,7 +854,7 @@ fi
+#
+#  echo $ac_n "checking if $compiler static flag $link_static_flag works... $ac_c" 1>&6
+#  $rm conftest*
+# -echo 'main(){return(0);}' > conftest.c
+# +echo 'int main(){return(0);}' > conftest.c
+# -----------------
+#3.
+# -----------------
+# with c90
+# stroke_test.c:72:1: error: C++ style comments are not allowed in ISO C90
+# -----------------
+FORCE_C_STD=           gnu90
 
 CONFIGURE_ENV+=                ac_cv_path_GTK_CONFIG=no
 



Home | Main Index | Thread Index | Old Index