MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix utf8proc static linking

+6 -1
+6 -1
meson/deps/meson.build
··· 115 115 116 116 uthash_dep = subproject('uthash').get_variable('uthash_dep') 117 117 yyjson_dep = subproject('yyjson').get_variable('yyjson_dep') 118 - utf8proc_dep = subproject('utf8proc').get_variable('utf8proc_dep') 119 118 uuidv7_dep = subproject('uuidv7').get_variable('uuidv7_dep') 120 119 argtable3_dep = subproject('argtable3').get_variable('argtable3_dep') 121 120 minicoro_dep = subproject('minicoro').get_variable('minicoro_dep') 122 121 crprintf_dep = subproject('crprintf').get_variable('crprintf_dep') 123 122 uriparser_dep = subproject('uriparser').get_variable('uriparser_dep') 123 + 124 + utf8proc_base_dep = subproject('utf8proc').get_variable('utf8proc_dep') 125 + utf8proc_dep = declare_dependency( 126 + dependencies: [utf8proc_base_dep], 127 + compile_args: get_option('default_library') == 'static' ? ['-DUTF8PROC_STATIC'] : [], 128 + ) 124 129 125 130 lmdb_dep = subproject('lmdb', default_options: [ 126 131 'warning_level=0',