mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-26 08:19:55 +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
33 lines
936 B
Makefile
33 lines
936 B
Makefile
# ----------------------------------------------------------------------------
|
|
# Cocoa-specific options
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# Force using glibc internal iconv implementation instead of external libiconv
|
|
# Valid options: YES, NO
|
|
NETSURF_USE_LIBICONV_PLUG := NO
|
|
|
|
# Enable NetSurf's use of librosprite for displaying RISC OS Sprites
|
|
# Valid options: YES, NO, AUTO
|
|
NETSURF_USE_ROSPRITE := NO
|
|
|
|
# Enable NetSurf's use of librsvg in conjunction with Cairo to display SVGs
|
|
# Valid options: YES, NO, AUTO
|
|
NETSURF_USE_RSVG := AUTO
|
|
|
|
# Enable NetSurf's use of libsvgtiny for displaying SVGs
|
|
# Valid options: YES, NO, AUTO
|
|
NETSURF_USE_NSSVG := AUTO
|
|
|
|
NETSURF_USE_BMP := NO
|
|
NETSURF_USE_GIF := NO
|
|
NETSURF_USE_PNG := NO
|
|
NETSURF_USE_JPEG := NO
|
|
NETSURF_USE_IMAGEIO := YES
|
|
|
|
DEVELOPER_PATH := /Developer
|
|
MACOSX_VERSION := 10.6
|
|
SDK_VERSION := $(MACOSX_VERSION)
|
|
|
|
# Optimisation levels
|
|
CFLAGS += -O2
|