Merge pull request #109 from anholt/macos-version-info

Add explicit version flags for macOS builds
macos/v1.5.9
Emmanuele Bassi 8 years ago committed by GitHub
commit fef61ab6be
  1. 11
      src/meson.build

@ -51,10 +51,15 @@ foreach h: headers
epoxy_headers += join_paths(meson.source_root(), 'include/epoxy/@0@'.format(h)) epoxy_headers += join_paths(meson.source_root(), 'include/epoxy/@0@'.format(h))
endforeach endforeach
if cc.get_id() == 'gcc' common_ldflags = []
if host_system == 'linux'
common_ldflags = [ '-Wl,-Bsymbolic', '-Wl,-z,relro', '-Wl,-z,now', ] common_ldflags = [ '-Wl,-Bsymbolic', '-Wl,-z,relro', '-Wl,-z,now', ]
else endif
common_ldflags = []
# Maintain compatibility with autotools; see: https://github.com/anholt/libepoxy/issues/108
if host_system == 'darwin'
common_ldflags += [ '-compatibility_version=1', '-current_version=1.0', ]
endif endif
epoxy_deps = [ dl_dep, ] epoxy_deps = [ dl_dep, ]

Loading…
Cancel
Save