diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 16:44:13 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 16:44:13 +0000 |
commit | 7cd910abbca26275b71713caf25004a38286214f (patch) | |
tree | 8c9387e60a8a2d7b4696226627674161c2a59887 /debian/header-remove-_PUBLIC_-define.patch | |
parent | Adding upstream version 2.4.2. (diff) | |
download | talloc-7cd910abbca26275b71713caf25004a38286214f.tar.xz talloc-7cd910abbca26275b71713caf25004a38286214f.zip |
Adding debian version 2.4.2-1.debian/2.4.2-1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/header-remove-_PUBLIC_-define.patch')
-rw-r--r-- | debian/header-remove-_PUBLIC_-define.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/debian/header-remove-_PUBLIC_-define.patch b/debian/header-remove-_PUBLIC_-define.patch new file mode 100644 index 0000000..10557d1 --- /dev/null +++ b/debian/header-remove-_PUBLIC_-define.patch @@ -0,0 +1,29 @@ +From: Michael Tokarev <mjt@tls.msk.ru> +Date: Sun, 10 Apr 2022 00:06:35 +0300 +Subject: header: remove _PUBLIC_ define + +Samba installs public headers with _PUBLIC_ markers for all externally-visible +symbols. And it also defines _PUBLIC_ if it is not already defined. +This define should be removed, because it is in an reserved namespace, and +because it already stays in conflict with samba own headers of libraries it +is building internally. The markers for every symbol are removed separately, +this patch removes the _PUBLIC_ definition itself. + +diff --git a/talloc.h b/talloc.h +index 06e81d7..dbf35b5 100644 +--- a/talloc.h ++++ b/talloc.h +@@ -36,13 +35,0 @@ extern "C" { +-/* for old gcc releases that don't have the feature test macro __has_attribute */ +-#ifndef __has_attribute +-#define __has_attribute(x) 0 +-#endif +- +-#ifndef _PUBLIC_ +-#if __has_attribute(visibility) +-#define _PUBLIC_ __attribute__((visibility("default"))) +-#else +-#define _PUBLIC_ +-#endif +-#endif +- |