summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Hergert <chergert@redhat.com>2023-03-21 12:10:07 -0700
committerChristian Hergert <chergert@redhat.com>2023-03-22 16:44:45 -0700
commit0a7d7526e19790613bcbd6b6b050bca79c585db2 (patch)
treef1a869a6260ea4dc2b6204c3dc91b05797ca588d
parent0c096e8025a58772f400301d262942cf9ade3bbd (diff)
downloadlibpeas-0a7d7526e19790613bcbd6b6b050bca79c585db2.tar.gz
loaders/python: fix symbol visibility in shared module
-rw-r--r--loaders/python/meson.build5
1 files changed, 3 insertions, 2 deletions
diff --git a/loaders/python/meson.build b/loaders/python/meson.build
index 4538376..b62c629 100644
--- a/loaders/python/meson.build
+++ b/loaders/python/meson.build
@@ -14,7 +14,7 @@ python3_loader_c = files(
python3_loader_res = gnome.compile_resources(
'peas-python-resources',
'peas-python.gresource.xml',
- export: true,
+ export: false,
)
python3_loader_deps = [
@@ -41,5 +41,6 @@ python3_loader_sha = shared_module(
pkglibdir,
'loaders',
),
- name_suffix: module_suffix
+ name_suffix: module_suffix,
+ gnu_symbol_visibility: 'hidden',
)