summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2009-03-16 20:20:37 +0000
committerVincent Sanders <vince@netsurf-browser.org>2009-03-16 20:20:37 +0000
commite37b214e10378f214535ababc37edbd7adedf7fe (patch)
treef8e213cb51c8d3e1b3c2f68a736664346f7337f5 /Makefile
parent9e81d2e583587f6d0104f503999a4d656dd69334 (diff)
downloadnetsurf-e37b214e10378f214535ababc37edbd7adedf7fe.tar.gz
netsurf-e37b214e10378f214535ababc37edbd7adedf7fe.tar.bz2
fix able frontend
svn path=/trunk/netsurf/; revision=6791
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f6efe77b6..55858b381 100644
--- a/Makefile
+++ b/Makefile
@@ -468,6 +468,7 @@ endif
ifeq ($(TARGET),framebuffer)
$(eval $(call feature_enabled,MNG,-DWITH_MNG,-lmng,PNG support))
+ $(eval $(call feature_enabled,PNG,-DWITH_PNG,-lpng,PNG support))
ifeq ($(NETSURF_FB_FONTLIB),freetype)
CFLAGS += -DFB_USE_FREETYPE $(shell freetype-config --cflags)
@@ -505,9 +506,10 @@ ifeq ($(TARGET),framebuffer)
ifeq ($(NETSURF_FB_FRONTEND),able)
$(eval $(call feature_enabled,GIF,-DWITH_GIF,-lnsgif,NetSurf GIF decoder))
+ $(eval $(call feature_enabled,HUBBUB,-DWITH_HUBBUB,-lhubbub,Hubbub))
CC=arm-able-gcc
CFLAGS += -std=c99 -I. -I/usr/lib/able/include -Dsmall $(WARNFLAGS)
- LDFLAGS += -lxml2 -lz -ljpeg -lcurl -lm
+ LDFLAGS += -lparserutils -lxml2 -lz -ljpeg -lcurl -lm
SUBTARGET := -able
endif