mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-01 20:16:14 +02:00
a328712f21
Well, this is the huge update of netsurf libraries and netsurf itself. Previously, SDL interface wasn't usable (not without keymouse), because all netsurf keybindings only work in gtk (or something like that). At some point of time (before this commit), netsurf wasn't buildable at all. Now it at least builds and shows up the interface on Ben. However, there are two problems: it crashes when i press arrow keys and it "fails to parse" an HTML page. So i'm commiting this because from the quality of point view, netsurf package hasn't become worse (it's compilable and somewhat startable) - so somebody who is interested may contact netsurf developers to report bugs or ask for a help.
28 lines
1.3 KiB
Makefile
28 lines
1.3 KiB
Makefile
#
|
|
# NetSurf build configuration example
|
|
#
|
|
#
|
|
# To configure NetSurf's build options create a Makefile.config file. This is
|
|
# an example Makefile.config.
|
|
#
|
|
# To see the available config options, look at Makefile.defaults
|
|
|
|
|
|
# For example, by default, NetSurf builds with BMP support. If you
|
|
# wish to disable this, then uncomment the following line.
|
|
|
|
override NETSURF_USE_MNG := NO
|
|
override NETSURF_FB_FONTLIB := freetype
|
|
|
|
# freetype compiled in font locations
|
|
override NETSURF_FB_FONT_SANS_SERIF := /usr/share/fonts/ttf-dejavu/DejaVuSans.ttf
|
|
override NETSURF_FB_FONT_SANS_SERIF_BOLD := /usr/share/fonts/ttf-dejavu/DejaVuSans-Bold.ttf
|
|
override NETSURF_FB_FONT_SANS_SERIF_ITALIC := /usr/share/fonts/ttf-dejavu/DejaVuSans-Oblique.ttf
|
|
override NETSURF_FB_FONT_SANS_SERIF_ITALIC_BOLD := /usr/share/fonts/ttf-dejavu/DejaVuSans-BoldOblique.ttf
|
|
override NETSURF_FB_FONT_SERIF := /usr/share/fonts/ttf-dejavu/DejaVuSerif.ttf
|
|
override NETSURF_FB_FONT_SERIF_BOLD := /usr/share/fonts/ttf-dejavu/DejaVuSerif-Bold.ttf
|
|
override NETSURF_FB_FONT_MONOSPACE := /usr/share/fonts/ttf-dejavu/DejaVuSansMono.ttf
|
|
override NETSURF_FB_FONT_MONOSPACE_BOLD := /usr/share/fonts/ttf-dejavu/DejaVuSansMono-Bold.ttf
|
|
override NETSURF_FB_FONT_CURSIVE := /usr/share/fonts/msttcorefonts/Comic_Sans_MS.ttf
|
|
override NETSURF_FB_FONT_FANTASY := /usr/share/fonts/msttcorefonts/Impact.ttf
|