diff mbox series

package/lua-lunix: fix build with recent gcc

Message ID 20210801095734.3213451-1-francois.perrad@gadz.org
State Changes Requested
Headers show
Series package/lua-lunix: fix build with recent gcc | expand

Commit Message

Francois Perrad Aug. 1, 2021, 9:57 a.m. UTC
see http://autobuild.buildroot.net/results/749a11d5289c6fec3b2f236b9073fc1ab730d090/

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
 ...ctl-instead-of-deprecated-sys-sysctl.patch | 31 +++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 package/lua-lunix/0003-use-linux-sysctl-instead-of-deprecated-sys-sysctl.patch

Comments

Thomas Petazzoni Aug. 1, 2021, 10:06 a.m. UTC | #1
Hello François,

Thanks for the patch! However, there are a few formatting issues, see
below.

On Sun,  1 Aug 2021 11:57:34 +0200
Francois Perrad <fperrad@gmail.com> wrote:

> see http://autobuild.buildroot.net/results/749a11d5289c6fec3b2f236b9073fc1ab730d090/

This should be:

Fixes:

  http://autobuild.buildroot.net/results/749a11d5289c6fec3b2f236b9073fc1ab730d090/

The fact that there is the "Fixes" word ensures that patchwork
identifies it as a patch that fixes something.

> diff --git a/package/lua-lunix/0003-use-linux-sysctl-instead-of-deprecated-sys-sysctl.patch b/package/lua-lunix/0003-use-linux-sysctl-instead-of-deprecated-sys-sysctl.patch
> new file mode 100644
> index 000000000..e2369bdfb
> --- /dev/null
> +++ b/package/lua-lunix/0003-use-linux-sysctl-instead-of-deprecated-sys-sysctl.patch
> @@ -0,0 +1,31 @@
> +Fetched from https://github.com/wahern/lunix/pull/18

This should go...

> +
> +From 99b02b08d3f1a53e58b558b9f2250225e569a550 Mon Sep 17 00:00:00 2001
> +From: Tiago Seco <tiago@seco.ws>
> +Date: Sun, 20 Jun 2021 11:20:23 +0200
> +Subject: [PATCH] use <linux/sysctl.h> instead of deprectaed <sys/sysctl.h> for
> + linux systems
> +

... here. Otherwise you break the patch which cannot be applied with
"git am" anymore.

Also, you need to add your Signed-off-by line in the patch. Note that
this particular issue is reported by "make check-package".

Could you adjust those minor details and send an updated version?

Thanks a lot!

Thomas
diff mbox series

Patch

diff --git a/package/lua-lunix/0003-use-linux-sysctl-instead-of-deprecated-sys-sysctl.patch b/package/lua-lunix/0003-use-linux-sysctl-instead-of-deprecated-sys-sysctl.patch
new file mode 100644
index 000000000..e2369bdfb
--- /dev/null
+++ b/package/lua-lunix/0003-use-linux-sysctl-instead-of-deprecated-sys-sysctl.patch
@@ -0,0 +1,31 @@ 
+Fetched from https://github.com/wahern/lunix/pull/18
+
+From 99b02b08d3f1a53e58b558b9f2250225e569a550 Mon Sep 17 00:00:00 2001
+From: Tiago Seco <tiago@seco.ws>
+Date: Sun, 20 Jun 2021 11:20:23 +0200
+Subject: [PATCH] use <linux/sysctl.h> instead of deprectaed <sys/sysctl.h> for
+ linux systems
+
+---
+ lunix-rel-20170920/src/unix.c | 6 +++++-
+ 1 file changed, 5 insertions(+), 1 deletion(-)
+
+diff --git a/lunix-rel-20170920/src/unix.c b/lunix-rel-20170920/src/unix.c
+index bea4d14..dfa26a3 100644
+--- a/lunix-rel-20170920/src/unix.c
++++ b/lunix-rel-20170920/src/unix.c
+@@ -560,7 +560,11 @@
+ #endif
+ 
+ #if HAVE_SYS_SYSCTL_H
+-#include <sys/sysctl.h> /* CTL_KERN KERN_RANDOM RANDOM_UUID sysctl(2) */
++#ifdef __linux__
++#include <linux/sysctl.h> /* CTL_KERN KERN_RANDOM RANDOM_UUID sysctl(2) */
++#else
++#include <sys/sysctl.h>
++#endif
+ #endif
+ 
+ #if HAVE_IFADDRS_H
+-- 
+2.30.2