1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-06 23:44:43 -04:00
elinks/src/util/meson.build
Witold Filipczyk 89f99a0667 [md5] Force to use own implementation of MD5
MD5 in openssl-3.0 is deprecated, so to avoid
warnings was switched to ELink's version.
2022-01-10 20:23:47 +01:00

23 lines
665 B
Meson

subdir('qs_parse')
if not conf_data.get('CONFIG_SMALL')
srcs += files('fastfind.c')
endif
if conf_data.get('CONFIG_CSS') or conf_data.get('CONFIG_BITTORRENT')
srcs += files('scanner.c')
endif
if conf_data.get('CONFIG_DEBUG')
srcs += files('memdebug.c')
endif
if conf_data.get('CONFIG_DOM')
srcs += files('scanner.c')
endif
if conf_data.get('CONFIG_BITTORRENT')
if conf_data.get('CONFIG_OWN_LIBC') or not conf_data.get('CONFIG_OPENSSL')
srcs += files('sha1.c')
endif
endif
srcs += files('base64.c', 'color.c', 'conv.c', 'env.c', 'error.c', 'file.c', 'hash.c',
'md5.c', 'memlist.c', 'memory.c', 'random.c', 'secsave.c', 'snprintf.c', 'string.c', 'time.c')