1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-26 01:15:37 +00:00
elinks/src/mime/backend/meson.build
Witold Filipczyk 443d42608d [dgi] Experimental DGI support.
Dos Gateway Interface was introduced by Arachne browser.
I tested two cases:
file/cdplayer.dgi   |[7]$ecdplayer.exe $s
application/pdf pdf>txt|$epdftotext $1 $2
2022-05-21 18:18:55 +02:00

26 lines
643 B
Meson

if conf_data.get('CONFIG_DGI')
srcs += files('dgi.c')
endif
if conf_data.get('CONFIG_MAILCAP')
srcs += files('mailcap.c')
endif
if conf_data.get('CONFIG_MIMETYPES')
srcs += files('mimetypes.c')
endif
srcs += files('common.c', 'default.c')
##TEST_PROGS = \
## mailcap-cache$(EXEEXT)
# The dependencies are a bit funny here! I don't know why. Just remember to
# make clean before making the test. --jonas
##mailcap-cache.o: $(top_srcdir)/src/mime/backend/mailcap.c
## $(call cmd,compile,-DTEST_MAILCAP)
##TESTDEPS = \
## common.o \
## $(top_builddir)/src/osdep/osdep.o
##TESTDEPS-$(CONFIG_NLS) += $(top_builddir)/src/intl/gettext/lib.o