mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
26 lines
818 B
Meson
26 lines
818 B
Meson
|
#INCLUDES += $(GNUTLS_CFLAGS) $(OPENSSL_CFLAGS)
|
||
|
|
||
|
if not conf_data.get('CONFIG_SMALL')
|
||
|
srcs += files('fastfind.c')
|
||
|
endif
|
||
|
if conf_data.get('CONFIG_CSS') == 1
|
||
|
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_OWN_LIBC') or (not conf_data.get('CONFIG_GNUTLS_OPENSSL_COMPAT') and not conf_data.get('CONFIG_OPENSSL'))
|
||
|
srcs += files('md5.c')
|
||
|
endif
|
||
|
if conf_data.get('CONFIG_BITTORRENT') == 1
|
||
|
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',
|
||
|
'memlist.c', 'memory.c', 'random.c', 'secsave.c', 'snprintf.c', 'string.c', 'time.c')
|