Drop the dependency on libunistring

This commit is contained in:
Kovid Goyal
2018-01-18 00:09:40 +05:30
parent 2ddc7e8c80
commit 5faa649452
11 changed files with 2375 additions and 39 deletions

View File

@@ -220,9 +220,7 @@ def kitty_env():
pylib = get_python_flags(cflags)
gl_libs = ['-framework', 'OpenGL'] if is_macos else pkg_config('gl', '--libs')
libpng = pkg_config('libpng', '--libs')
ans.ldpaths += pylib + font_libs + gl_libs + libpng + [
'-lunistring'
]
ans.ldpaths += pylib + font_libs + gl_libs + libpng
if is_macos:
ans.ldpaths.extend('-framework Cocoa'.split())
if is_travis and 'SW' in os.environ: