Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/parprouted: fix build with gcc 15.x
@ 2025-12-01 19:28 Bernd Kuhls
  2026-02-03 16:33 ` Thomas Petazzoni via buildroot
  2026-02-13 19:36 ` Thomas Perale via buildroot
  0 siblings, 2 replies; 3+ messages in thread
From: Bernd Kuhls @ 2025-12-01 19:28 UTC (permalink / raw)
  To: buildroot

Fixes:
https://autobuild.buildroot.net/results/572/572669fe1f9a77083a361fee7c8acdf38d7375ae/

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
 package/parprouted/0001-gcc-15.patch | 38 ++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)
 create mode 100644 package/parprouted/0001-gcc-15.patch

diff --git a/package/parprouted/0001-gcc-15.patch b/package/parprouted/0001-gcc-15.patch
new file mode 100644
index 0000000000..2090506491
--- /dev/null
+++ b/package/parprouted/0001-gcc-15.patch
@@ -0,0 +1,38 @@
+Description: Fix FTBFS with GCC 15
+Author: Adrian Bunk <bunk@debian.org>
+Bug-Debian: https://bugs.debian.org/1097548
+
+Downloaded from
+https://sources.debian.org/src/parprouted/0.70-6/debian/patches/gcc-15.patch
+
+Upstream: dead (last update 2008)
+
+Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
+
+--- parprouted-0.70.orig/parprouted.c
++++ parprouted-0.70/parprouted.c
+@@ -330,7 +330,7 @@ void parseproc()
+     }
+ }
+ 
+-void cleanup() 
++void cleanup(void *arg)
+ {
+     /* FIXME: I think this is a wrong way to do it ... */
+     
+@@ -346,13 +346,13 @@ void cleanup()
+     exit(1);
+ }
+ 
+-void sighandler()
++void sighandler(int sig)
+ {
+     /* FIXME: I think this is a wrong way to do it ... */
+     perform_shutdown=1;
+ }
+ 
+-void *main_thread()
++void *main_thread(void *arg)
+ {
+     time_t last_refresh;
+ 
-- 
2.47.3

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/parprouted: fix build with gcc 15.x
  2025-12-01 19:28 [Buildroot] [PATCH 1/1] package/parprouted: fix build with gcc 15.x Bernd Kuhls
@ 2026-02-03 16:33 ` Thomas Petazzoni via buildroot
  2026-02-13 19:36 ` Thomas Perale via buildroot
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2026-02-03 16:33 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: buildroot

On Mon, Dec 01, 2025 at 08:28:49PM +0100, Bernd Kuhls wrote:
> Fixes:
> https://autobuild.buildroot.net/results/572/572669fe1f9a77083a361fee7c8acdf38d7375ae/
> 
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>

Thanks, applied!

To be honest, I'm wondering if this package shouldn't be removed. Last
release in 2008 for a network-facing daemon, that isn't really great.

Thomas
-- 
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/parprouted: fix build with gcc 15.x
  2025-12-01 19:28 [Buildroot] [PATCH 1/1] package/parprouted: fix build with gcc 15.x Bernd Kuhls
  2026-02-03 16:33 ` Thomas Petazzoni via buildroot
@ 2026-02-13 19:36 ` Thomas Perale via buildroot
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Perale via buildroot @ 2026-02-13 19:36 UTC (permalink / raw)
  To: Bernd Kuhls; +Cc: Thomas Perale, buildroot

In reply of:
> Fixes:
> https://autobuild.buildroot.net/results/572/572669fe1f9a77083a361fee7c8acdf38d7375ae/
> 
> Signed-off-by: Bernd Kuhls <bernd@kuhls.net>

Applied to 2025.11.x. Thanks

> ---
>  package/parprouted/0001-gcc-15.patch | 38 ++++++++++++++++++++++++++++
>  1 file changed, 38 insertions(+)
>  create mode 100644 package/parprouted/0001-gcc-15.patch
> 
> diff --git a/package/parprouted/0001-gcc-15.patch b/package/parprouted/0001-gcc-15.patch
> new file mode 100644
> index 0000000000..2090506491
> --- /dev/null
> +++ b/package/parprouted/0001-gcc-15.patch
> @@ -0,0 +1,38 @@
> +Description: Fix FTBFS with GCC 15
> +Author: Adrian Bunk <bunk@debian.org>
> +Bug-Debian: https://bugs.debian.org/1097548
> +
> +Downloaded from
> +https://sources.debian.org/src/parprouted/0.70-6/debian/patches/gcc-15.patch
> +
> +Upstream: dead (last update 2008)
> +
> +Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
> +
> +--- parprouted-0.70.orig/parprouted.c
> ++++ parprouted-0.70/parprouted.c
> +@@ -330,7 +330,7 @@ void parseproc()
> +     }
> + }
> + 
> +-void cleanup() 
> ++void cleanup(void *arg)
> + {
> +     /* FIXME: I think this is a wrong way to do it ... */
> +     
> +@@ -346,13 +346,13 @@ void cleanup()
> +     exit(1);
> + }
> + 
> +-void sighandler()
> ++void sighandler(int sig)
> + {
> +     /* FIXME: I think this is a wrong way to do it ... */
> +     perform_shutdown=1;
> + }
> + 
> +-void *main_thread()
> ++void *main_thread(void *arg)
> + {
> +     time_t last_refresh;
> + 
> -- 
> 2.47.3
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-02-13 19:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-01 19:28 [Buildroot] [PATCH 1/1] package/parprouted: fix build with gcc 15.x Bernd Kuhls
2026-02-03 16:33 ` Thomas Petazzoni via buildroot
2026-02-13 19:36 ` Thomas Perale via buildroot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox