Fix mac build

This commit is contained in:
mikolajp 2018-02-25 21:41:53 +08:00
parent 1d40d47112
commit 2cc88de921

View File

@ -231,8 +231,7 @@ elif osdet == 'darwin'
os_c_flags = os_c_flags + ['-bind_at_load']
os_link_flags = ['-framework CoreServices', '-framework CoreFoundation']
ncurses_dep = meson.get_compiler('c').find_library('ncurses')
openssl_dep = meson.get_compiler('c').find_library('openssl')
os_deps = os_deps + [ncurses_dep, openssl_dep]
os_deps = os_deps + [ncurses_dep]
elif osdet == 'bsd'
conf_data.set('U3_OS_bsd', true)