summaryrefslogtreecommitdiff
path: root/package/libsepol
diff options
context:
space:
mode:
authorRomain Naour <romain.naour@openwide.fr>2015-02-14 16:10:56 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-02-14 22:04:48 +0100
commitaa476ab32cfb2dc0ba3621d78cdb6971a9f86753 (patch)
tree5cb3a7ae0ede422725050c19da925cc0dab825e5 /package/libsepol
parenta45838ab004843511b42006423a84c057f5d5a75 (diff)
package/libsepol: add patch to fix Blackfin build issue
libsepol use the same build system than libselinux, so it's affected by the same issue. Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libsepol')
-rw-r--r--package/libsepol/0002-workaround-blackfin-issue.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/package/libsepol/0002-workaround-blackfin-issue.patch b/package/libsepol/0002-workaround-blackfin-issue.patch
new file mode 100644
index 000000000..5d00c6983
--- /dev/null
+++ b/package/libsepol/0002-workaround-blackfin-issue.patch
@@ -0,0 +1,24 @@
+Do not make symbols hidden on Blackfin
+
+The libselinux logic to hide internal symbols from the DSO doesn't
+work properly on Blackfin due to the USER_LABEL_PREFIX not being
+handled properly. A real fix is not that simple, so this patch simply
+disables the internal symbol hiding mechanism. This means that those
+symbols are visible in the final DSO, which is not a problem for
+proper execution, it just isn't as clean.
+
+Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
+
+Index: b/src/dso.h
+===================================================================
+--- a/src/dso.h
++++ b/src/dso.h
+@@ -1,7 +1,7 @@
+ #ifndef _SELINUX_DSO_H
+ #define _SELINUX_DSO_H 1
+
+-#ifdef SHARED
++#if defined(SHARED) && !defined(__bfin__)
+ # define hidden __attribute__ ((visibility ("hidden")))
+ # define hidden_proto(fct) __hidden_proto (fct, fct##_internal)
+ # define __hidden_proto(fct, internal) \