1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-10-01 03:36:26 -04:00
elinks/src/osdep/meson.build
Witold Filipczyk 2bec2984c4 [dos] Very experimental DOS port based on links-2.26 code
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.
2022-05-09 18:53:36 +02:00

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')