summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2018-10-04 18:07:34 +0200
committerEmmanuele Bassi <ebassi@gnome.org>2018-10-04 18:07:34 +0200
commitbf531d104299f5074a6f22cc353221cc7c7708fa (patch)
tree1c00962accbd681f46858d55f23c37e0ab6bc438
parent7a88ef5741385c84855c95f6d33132883e34867d (diff)
downloadlibepoxy-bf531d104299f5074a6f22cc353221cc7c7708fa.tar.gz
build: Drop conditional use of get_supported_link_arguments()meson-bump
Meson complains even in the face of a version check.
-rw-r--r--src/meson.build6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/meson.build b/src/meson.build
index 466fc0d..fe092d1 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -50,11 +50,7 @@ epoxy_sources = sources + gen_sources
common_ldflags = []
if host_system == 'linux' and cc.get_id() == 'gcc'
- if meson.version().version_compare('>= 0.46.0')
- common_ldflags += cc.get_supported_link_arguments([ '-Wl,-Bsymbolic-functions', '-Wl,-z,relro' ])
- else
- common_ldflags += [ '-Wl,-Bsymbolic-functions', '-Wl,-z,relro', ]
- endif
+ common_ldflags += cc.get_supported_link_arguments([ '-Wl,-Bsymbolic-functions', '-Wl,-z,relro' ])
endif
# Maintain compatibility with autotools; see: https://github.com/anholt/libepoxy/issues/108