CVS commit: src/external/lgpl3/mpc/lib/libmpc

2023-03-05 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Mar  5 22:36:58 UTC 2023

Modified Files:
src/external/lgpl3/mpc/lib/libmpc: Makefile

Log Message:
updates for mpc 1.3.1


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/lgpl3/mpc/lib/libmpc/Makefile

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

Modified files:

Index: src/external/lgpl3/mpc/lib/libmpc/Makefile
diff -u src/external/lgpl3/mpc/lib/libmpc/Makefile:1.6 src/external/lgpl3/mpc/lib/libmpc/Makefile:1.7
--- src/external/lgpl3/mpc/lib/libmpc/Makefile:1.6	Sat May 14 11:12:31 2022
+++ src/external/lgpl3/mpc/lib/libmpc/Makefile	Sun Mar  5 22:36:58 2023
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.6 2022/05/14 11:12:31 rillig Exp $
+#	$NetBSD: Makefile,v 1.7 2023/03/05 22:36:58 mrg Exp $
 
 .include 
 
@@ -23,11 +23,13 @@ SRCS=	\
 	add_fr.c \
 	add_si.c \
 	add_ui.c \
+	agm.c \
 	arg.c \
 	asin.c \
 	asinh.c \
 	atan.c \
 	atanh.c \
+	balls.c \
 	clear.c \
 	cmp.c \
 	cmp_abs.c \
@@ -41,6 +43,7 @@ SRCS=	\
 	div_fr.c \
 	div_ui.c \
 	dot.c \
+	eta.c \
 	exp.c \
 	fma.c \
 	fr_div.c \
@@ -74,6 +77,7 @@ SRCS=	\
 	pow_ui.c \
 	pow_z.c \
 	proj.c \
+	radius.c \
 	real.c \
 	rootofunity.c \
 	urandom.c \



CVS commit: src/external/lgpl3/mpc/lib/libmpc

2023-03-05 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Sun Mar  5 22:36:58 UTC 2023

Modified Files:
src/external/lgpl3/mpc/lib/libmpc: Makefile

Log Message:
updates for mpc 1.3.1


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/lgpl3/mpc/lib/libmpc/Makefile

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



CVS commit: src/external/lgpl3/mpc/lib/libmpc

2022-05-14 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sat May 14 11:12:31 UTC 2022

Modified Files:
src/external/lgpl3/mpc/lib/libmpc: Makefile

Log Message:
libmpc: suppress wrong lint warnings


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/external/lgpl3/mpc/lib/libmpc/Makefile

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



CVS commit: src/external/lgpl3/mpc/lib/libmpc

2022-05-14 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Sat May 14 11:12:31 UTC 2022

Modified Files:
src/external/lgpl3/mpc/lib/libmpc: Makefile

Log Message:
libmpc: suppress wrong lint warnings


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/external/lgpl3/mpc/lib/libmpc/Makefile

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

Modified files:

Index: src/external/lgpl3/mpc/lib/libmpc/Makefile
diff -u src/external/lgpl3/mpc/lib/libmpc/Makefile:1.5 src/external/lgpl3/mpc/lib/libmpc/Makefile:1.6
--- src/external/lgpl3/mpc/lib/libmpc/Makefile:1.5	Sat Sep 26 07:57:56 2020
+++ src/external/lgpl3/mpc/lib/libmpc/Makefile	Sat May 14 11:12:31 2022
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.5 2020/09/26 07:57:56 mrg Exp $
+#	$NetBSD: Makefile,v 1.6 2022/05/14 11:12:31 rillig Exp $
 
 .include 
 
@@ -106,6 +106,12 @@ CPPFLAGS+=	-I${.CURDIR}
 CPPFLAGS+=	-I${NETBSDSRCDIR}/external/lgpl3/gmp/lib/libgmp/arch/${GMP_MACHINE_ARCH}
 CPPFLAGS+=	-I${NETBSDSRCDIR}/external/lgpl3/mpfr/dist/src
 
+# mostly mpfr.h, MPFR_VALUE_OF
+LINTFLAGS+=	-X 161		# constant in conditional context
+# mostly mpc.h, MPC_RND_IM;
+# mpc_rnd_t is declared as int even though only 8 bits are actually used
+LINTFLAGS+=	-X 117		# bitwise '>>' on signed value possibly nonportable
+
 .include 
 
 .PATH: ${.CURDIR}/../../dist/src