depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBRARY
-config BR2_PACKAGE_SCONESERVER_LETTUCE
- bool "lettuce"
- help
- Sconeserver module for Lettuce embedded automation platform
-
- http://www.sconemad.com/lettuce/
-
config BR2_PACKAGE_SCONESERVER_MATHS
bool "maths"
select BR2_PACKAGE_MPFR
help
Testbuilder module for Sconeserver
-config BR2_PACKAGE_SCONESERVER_UI
- bool "ui"
- depends on BR2_PACKAGE_XORG7
- select BR2_PACKAGE_XLIB_LIBX11
- help
- UI module for Sconeserver
-
-comment "ui module requires X.org"
- depends on !BR2_PACKAGE_XORG7
-
endif # BR2_PACKAGE_SCONESERVER
comment "sconeserver needs a toolchain with dynamic library, C++, NPTL"
ifeq ($(BR2_PACKAGE_SCONESERVER_HTTP_SCONESITE_IMAGE),y)
SCONESERVER_DEPENDENCIES += imagemagick
-SCONESERVER_CONF_OPTS += \
- --with-sconesite-image \
- --with-Magick++-config="$(STAGING_DIR)/usr/bin/Magick++-config"
+SCONESERVER_CONF_OPTS += --with-image
else
-SCONESERVER_CONF_OPTS += --without-sconesite-image --with-Magick++-config=no
+SCONESERVER_CONF_OPTS += --without-image
endif
ifeq ($(BR2_PACKAGE_SCONESERVER_MYSQL),y)
SCONESERVER_CONF_OPTS += --without-location
endif
-ifeq ($(BR2_PACKAGE_SCONESERVER_LETTUCE),y)
-SCONESERVER_CONF_OPTS += --with-lettuce
-else
-SCONESERVER_CONF_OPTS += --without-lettuce
-endif
-
ifeq ($(BR2_PACKAGE_SCONESERVER_MATHS),y)
SCONESERVER_DEPENDENCIES += mpfr
SCONESERVER_CONF_OPTS += --with-maths
SCONESERVER_CONF_OPTS += --without-testbuilder
endif
-ifeq ($(BR2_PACKAGE_SCONESERVER_UI),y)
-SCONESERVER_DEPENDENCIES += xlib_libX11
-SCONESERVER_CONF_OPTS += --with-ui
-else
-SCONESERVER_CONF_OPTS += --without-ui
-endif
-
$(eval $(autotools-package))