2021-12-29 15:01:47 -05:00
|
|
|
subdir('qs_parse')
|
2020-09-05 16:02:16 -04:00
|
|
|
|
|
|
|
if not conf_data.get('CONFIG_SMALL')
|
|
|
|
srcs += files('fastfind.c')
|
|
|
|
endif
|
2021-06-21 15:01:37 -04:00
|
|
|
if conf_data.get('CONFIG_CSS') or conf_data.get('CONFIG_BITTORRENT')
|
2020-09-05 16:02:16 -04:00
|
|
|
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
|
2020-09-13 10:12:57 -04:00
|
|
|
if conf_data.get('CONFIG_BITTORRENT')
|
2020-09-05 16:02:16 -04:00
|
|
|
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',
|
2022-01-10 14:23:47 -05:00
|
|
|
'md5.c', 'memlist.c', 'memory.c', 'random.c', 'secsave.c', 'snprintf.c', 'string.c', 'time.c')
|