ab976c72a7
Static linking does not work properly in netsurf, nobody fixed it, and
the netsurf build system is completely broken. Let's disable the
package for static linking configurations.
Fixes:
http://autobuild.buildroot.net/results/28b43c29e241080e23c87145797ea00dc4b3970d/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
(cherry picked from commit bbfdfa77c4
)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
47 lines
1.0 KiB
Plaintext
47 lines
1.0 KiB
Plaintext
comment "netsurf needs a toolchain w/ dynamic library"
|
|
depends on BR2_STATIC_LIBS
|
|
|
|
config BR2_PACKAGE_NETSURF
|
|
bool "netsurf"
|
|
# static linking support is broken beyond repair
|
|
depends on !BR2_STATIC_LIBS
|
|
select BR2_PACKAGE_EXPAT
|
|
select BR2_PACKAGE_JPEG
|
|
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
|
select BR2_PACKAGE_LIBPNG
|
|
select BR2_PACKAGE_OPENSSL if BR2_PACKAGE_LIBCURL
|
|
help
|
|
NetSurf is a compact graphical web browser which aims for
|
|
HTML5, CSS and JavaScript support.
|
|
Frontends: GTK (X11), SDL 1.2 (framebuffer)
|
|
|
|
http://www.netsurf-browser.org/
|
|
|
|
if BR2_PACKAGE_NETSURF
|
|
|
|
choice
|
|
prompt "Netsurf frontend"
|
|
default BR2_PACKAGE_NETSURF_SDL
|
|
|
|
config BR2_PACKAGE_NETSURF_SDL
|
|
bool "sdl frontend"
|
|
select BR2_PACKAGE_SDL
|
|
help
|
|
Select SDL 1.2 frontend.
|
|
|
|
config BR2_PACKAGE_NETSURF_GTK
|
|
bool "gtk2 frontend"
|
|
depends on BR2_PACKAGE_LIBGTK2
|
|
help
|
|
Select GTK+ 2 frontend.
|
|
|
|
config BR2_PACKAGE_NETSURF_GTK3
|
|
bool "gtk3 frontend"
|
|
depends on BR2_PACKAGE_LIBGTK3
|
|
help
|
|
Select GTK+ 3 frontend.
|
|
|
|
endchoice
|
|
|
|
endif
|