fdb6fc2b4a
Build of http::sconesite::image module was silently broken until commitd3b818c3cf
However, sconeserver fails to build with ImageMagick because: - it checks for ImageMagick++.pc instead of ImageMagick.pc - it uses the transform function which has been removed from the public API since version 7.0.1-0 and06f590165f
As sconeserver does not seem to be maintained anymore, drop BR2_PACKAGE_SCONESERVER_HTTP_SCONESITE_IMAGE. Fixes: - http://autobuild.buildroot.org/results/895ab582d1140f7677fc1c6934fa2e0c47c49f20 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> [Arnout: add legacy symbol. It costs us exactly nothing, and if someone actually had that selected, they know what's going on.]
89 lines
2.5 KiB
Plaintext
89 lines
2.5 KiB
Plaintext
menuconfig BR2_PACKAGE_SCONESERVER
|
|
bool "sconeserver"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
|
depends on !BR2_STATIC_LIBS # dlopen()
|
|
select BR2_PACKAGE_ZLIB
|
|
help
|
|
Sconeserver is a modular, object-orientated and extremely
|
|
versatile network server framework for GNU/Linux and
|
|
UNIX-like platforms.
|
|
|
|
http://www.sconemad.com/sconeserver/
|
|
|
|
if BR2_PACKAGE_SCONESERVER
|
|
|
|
comment "Sconeserver modules"
|
|
|
|
config BR2_PACKAGE_SCONESERVER_EXAMPLES
|
|
bool "examples"
|
|
help
|
|
Example modules for Sconeserver
|
|
|
|
config BR2_PACKAGE_SCONESERVER_HTTP_SCONESITE
|
|
bool "http::sconesite"
|
|
select BR2_PACKAGE_LIBXML2
|
|
help
|
|
http::sconesite module for Sconeserver
|
|
|
|
config BR2_PACKAGE_SCONESERVER_MYSQL
|
|
bool "mysql"
|
|
depends on BR2_USE_MMU # mysql
|
|
select BR2_PACKAGE_MYSQL
|
|
help
|
|
MySQL module for Sconeserver
|
|
|
|
config BR2_PACKAGE_SCONESERVER_BLUETOOTH
|
|
bool "bluetooth"
|
|
depends on BR2_USE_WCHAR # bluez5_utils -> libglib2
|
|
depends on BR2_USE_MMU # bluez5_utils -> dbus
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # bluez5_utils -> dbus, libglib2
|
|
depends on !BR2_STATIC_LIBS # bluez5_utils
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4 # bluez5_utils
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # bluez5_utils
|
|
select BR2_PACKAGE_BLUEZ5_UTILS
|
|
help
|
|
Bluetooth module for Sconeserver
|
|
|
|
comment "bluetooth support needs a toolchain w/ wchar, threads, dynamic library, headers >= 3.4"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4
|
|
|
|
config BR2_PACKAGE_SCONESERVER_RSS
|
|
bool "rss"
|
|
select BR2_PACKAGE_LIBXML2
|
|
help
|
|
RSS module for Sconeserver
|
|
|
|
config BR2_PACKAGE_SCONESERVER_LOCATION
|
|
bool "location"
|
|
depends on BR2_USE_MMU # gpsd
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # gpsd
|
|
depends on !BR2_STATIC_LIBS # gpsd
|
|
select BR2_PACKAGE_GPSD
|
|
help
|
|
Location module for Sconeserver
|
|
|
|
comment "location support needs a toolchain w/ theads, dynamic library"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBRARY
|
|
|
|
config BR2_PACKAGE_SCONESERVER_MATHS
|
|
bool "maths"
|
|
select BR2_PACKAGE_MPFR
|
|
help
|
|
Mathematics module for Sconeserver
|
|
|
|
config BR2_PACKAGE_SCONESERVER_TESTBUILDER
|
|
bool "testbuilder"
|
|
help
|
|
Testbuilder module for Sconeserver
|
|
|
|
endif # BR2_PACKAGE_SCONESERVER
|
|
|
|
comment "sconeserver needs a toolchain with dynamic library, C++, NPTL"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS_NPTL \
|
|
|| BR2_STATIC_LIBS
|