mirror of
https://github.com/rkd77/elinks.git
synced 2024-10-11 05:29:28 -04:00
2bec2984c4
WATT-32 and openssl you must compile yourself. You must tweak configure options, something like: --disable-utf-8, etc. Only checked on dosemu with LFN. Networking lags is a bit.
23 lines
460 B
Meson
23 lines
460 B
Meson
#INCLUDES += $(X_CFLAGS)
|
|
|
|
if conf_data.get('CONFIG_OS_BEOS')
|
|
subdir('beos')
|
|
endif
|
|
if conf_data.get('CONFIG_OS_DOS')
|
|
subdir('dos')
|
|
endif
|
|
if conf_data.get('CONFIG_OS_OS2')
|
|
subdir('os2')
|
|
endif
|
|
if conf_data.get('CONFIG_OS_RISCOS')
|
|
subdir('riscos')
|
|
endif
|
|
if conf_data.get('CONFIG_OS_UNIX')
|
|
subdir('unix')
|
|
endif
|
|
if conf_data.get('CONFIG_OS_WIN32')
|
|
subdir('win32')
|
|
endif
|
|
|
|
srcs += files('getifaddrs.c', 'newwin.c', 'osdep.c', 'signals.c', 'stub.c', 'sysname.c')
|