mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-30 10:13:08 +03:00
e7f9dbcb10
The bitmap and image handling interfaces have changed within NetSurf and the webp image handling has not been fixed up appropriately to cope. After discussion with the other developers it has been decided that the webp support is not worth the necessary development effort to rewrite and maintain. The webp format is not in wide usage and Mozilla, Microsoft and Apple have not adopted it. This means the removal will not adversely impact NetSurf. Resolves:2310
16 lines
496 B
Makefile
16 lines
496 B
Makefile
# Image content handlers sources
|
|
|
|
# S_IMAGE are sources related to image management
|
|
S_IMAGE_YES := image.c image_cache.c
|
|
S_IMAGE_NO :=
|
|
S_IMAGE_$(NETSURF_USE_BMP) += bmp.c ico.c
|
|
S_IMAGE_$(NETSURF_USE_GIF) += gif.c
|
|
S_IMAGE_$(NETSURF_USE_JPEG) += jpeg.c
|
|
S_IMAGE_$(NETSURF_USE_ROSPRITE) += nssprite.c
|
|
S_IMAGE_$(NETSURF_USE_PNG) += png.c
|
|
S_IMAGE_$(NETSURF_USE_NSSVG) += svg.c
|
|
S_IMAGE_$(NETSURF_USE_RSVG) += rsvg.c
|
|
S_IMAGE_$(NETSURF_USE_VIDEO) += video.c
|
|
|
|
S_IMAGE := $(addprefix image/,$(S_IMAGE_YES))
|