2023-06-11 17:50:50

by Giulio Benetti

[permalink] [raw]
Subject: [PATCH] support/reexport: guard dlfcn.h include with HAVE_DLFCN_H

From: Bernd Kuhls <[email protected]>

Signed-off-by: Bernd Kuhls <[email protected]>
Signed-off-by: Giulio Benetti <[email protected]>
---
support/reexport/fsidd.c | 2 ++
support/reexport/reexport.c | 2 ++
2 files changed, 4 insertions(+)

diff --git a/support/reexport/fsidd.c b/support/reexport/fsidd.c
index 37649d06..d4b245e8 100644
--- a/support/reexport/fsidd.c
+++ b/support/reexport/fsidd.c
@@ -3,7 +3,9 @@
#endif

#include <assert.h>
+#ifdef HAVE_DLFCN_H
#include <dlfcn.h>
+#endif
#include <event2/event.h>
#include <limits.h>
#include <stdint.h>
diff --git a/support/reexport/reexport.c b/support/reexport/reexport.c
index d597a2f7..d9a700af 100644
--- a/support/reexport/reexport.c
+++ b/support/reexport/reexport.c
@@ -2,7 +2,9 @@
#include <config.h>
#endif

+#ifdef HAVE_DLFCN_H
#include <dlfcn.h>
+#endif
#include <stdint.h>
#include <stdio.h>
#include <sys/random.h>
--
2.34.1



2023-06-12 20:26:17

by Steve Dickson

[permalink] [raw]
Subject: Re: [PATCH] support/reexport: guard dlfcn.h include with HAVE_DLFCN_H



On 6/11/23 1:45 PM, Giulio Benetti wrote:
> From: Bernd Kuhls <[email protected]>
>
> Signed-off-by: Bernd Kuhls <[email protected]>
> Signed-off-by: Giulio Benetti <[email protected]>
Committed... (tag: nfs-utils-2-6-4-rc2)

steved.
> ---
> support/reexport/fsidd.c | 2 ++
> support/reexport/reexport.c | 2 ++
> 2 files changed, 4 insertions(+)
>
> diff --git a/support/reexport/fsidd.c b/support/reexport/fsidd.c
> index 37649d06..d4b245e8 100644
> --- a/support/reexport/fsidd.c
> +++ b/support/reexport/fsidd.c
> @@ -3,7 +3,9 @@
> #endif
>
> #include <assert.h>
> +#ifdef HAVE_DLFCN_H
> #include <dlfcn.h>
> +#endif
> #include <event2/event.h>
> #include <limits.h>
> #include <stdint.h>
> diff --git a/support/reexport/reexport.c b/support/reexport/reexport.c
> index d597a2f7..d9a700af 100644
> --- a/support/reexport/reexport.c
> +++ b/support/reexport/reexport.c
> @@ -2,7 +2,9 @@
> #include <config.h>
> #endif
>
> +#ifdef HAVE_DLFCN_H
> #include <dlfcn.h>
> +#endif
> #include <stdint.h>
> #include <stdio.h>
> #include <sys/random.h>