Some packages require to use newer version of startup-notification library which currenly does not support by the package makefile. This patch created a version selection for this package. Signed-off-by: Mohamad Noor Alim Hussin <mnalim@efinixinc.com>
22 lines
632 B
Plaintext
22 lines
632 B
Plaintext
config BR2_STARTUP_NOTIFICATION_VERSION_0_9
|
|
bool "startup-notification 0.9"
|
|
|
|
config BR2_STARTUP_NOTIFICATION_VERSION_0_12
|
|
bool "startup-notification 0.12"
|
|
|
|
config BR2_STARTUP_NOTIFICATION_VERSION
|
|
string
|
|
default "0.9" if BR2_STARTUP_NOTIFICATION_VERSION_0_9
|
|
default "0.12" if BR2_STARTUP_NOTIFICATION_VERSION_0_12
|
|
|
|
config BR2_PACKAGE_STARTUP_NOTIFICATION
|
|
bool "startup-notification"
|
|
depends on BR2_PACKAGE_XORG7
|
|
depends on BR2_USE_MMU # fork()
|
|
select BR2_PACKAGE_XLIB_LIBX11
|
|
help
|
|
Startup-notification is a library used to monitor
|
|
application startup.
|
|
|
|
http://freedesktop.org/software/startup-notification/releases
|