diff options
author | Paul Spooren <mail@aparcar.org> | 2021-06-23 11:58:51 -1000 |
---|---|---|
committer | Paul Spooren <mail@aparcar.org> | 2021-06-26 18:10:44 -1000 |
commit | adddfe57870d96532b7a6ad2e142a5150f69da36 (patch) | |
tree | 595a76a453279507c10d67dcd0fb28534cb487a2 /package/network/utils/dante/patches/200-fix-RTLD_NEXT.patch | |
parent | 76cc8a036ccb2355e301740ac2f51ac39894cd09 (diff) | |
download | upstream-adddfe57870d96532b7a6ad2e142a5150f69da36.tar.gz upstream-adddfe57870d96532b7a6ad2e142a5150f69da36.tar.bz2 upstream-adddfe57870d96532b7a6ad2e142a5150f69da36.zip |
dante: move to packages.git
Rather than maintaining it in core, move it to packages.git where it's
maintained by a community.
Signed-off-by: Paul Spooren <mail@aparcar.org>
Diffstat (limited to 'package/network/utils/dante/patches/200-fix-RTLD_NEXT.patch')
-rw-r--r-- | package/network/utils/dante/patches/200-fix-RTLD_NEXT.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/package/network/utils/dante/patches/200-fix-RTLD_NEXT.patch b/package/network/utils/dante/patches/200-fix-RTLD_NEXT.patch deleted file mode 100644 index 594a6f900b..0000000000 --- a/package/network/utils/dante/patches/200-fix-RTLD_NEXT.patch +++ /dev/null @@ -1,36 +0,0 @@ ---- a/lib/address.c -+++ b/lib/address.c -@@ -48,11 +48,12 @@ - - #include "upnp.h" - --#ifndef __USE_GNU --#define __USE_GNU /* XXX for RTLD_NEXT on Linux */ --#endif /* !__USE_GNU */ - #include <dlfcn.h> - -+#ifndef RTLD_NEXT -+#define RTLD_NEXT ((void *) -1l) -+#endif -+ - static const char rcsid[] = - "$Id: address.c,v 1.288.4.4 2014/08/15 18:16:40 karls Exp $"; - ---- a/dlib/interposition.c -+++ b/dlib/interposition.c -@@ -93,11 +93,12 @@ write$NOCANCEL(HAVE_PROT_WRITE_1, HAVE_P - - #endif /* HAVE_DARWIN */ - --#ifndef __USE_GNU --#define __USE_GNU /* XXX for RTLD_NEXT on Linux */ --#endif /* !__USE_GNU */ - #include <dlfcn.h> - -+#ifndef RTLD_NEXT -+#define RTLD_NEXT ((void *) -1l) -+#endif -+ - #ifdef __COVERITY__ - /* - * Coverity naturally has no idea what the function sys_foo calls does, |