mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-02 16:07:42 +00:00
qt: add option for enabling the accessibility support
This adds an entry in the configuration menu in order to enable or disable the accessibility support. Signed-off-by: Romain Perier <romain.perier@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
255086f960
commit
1ec1fbbdbb
@ -302,6 +302,11 @@ config BR2_PACKAGE_QT_QTTIFF
|
|||||||
bool "Use Qt bundled libtiff"
|
bool "Use Qt bundled libtiff"
|
||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
|
config BR2_PACKAGE_QT_ACCESSIBILITY
|
||||||
|
bool "Enable accessibility support"
|
||||||
|
help
|
||||||
|
This enables and compiles the accessibility support.
|
||||||
|
|
||||||
endif # BR2_PACKAGE_QT_GUI_MODULE
|
endif # BR2_PACKAGE_QT_GUI_MODULE
|
||||||
|
|
||||||
choice
|
choice
|
||||||
|
@ -258,6 +258,12 @@ else
|
|||||||
QT_CONFIGURE_OPTS += -no-libmng
|
QT_CONFIGURE_OPTS += -no-libmng
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_QT_ACCESSIBILITY),y)
|
||||||
|
QT_CONFIGURE_OPTS += -accessibility
|
||||||
|
else
|
||||||
|
QT_CONFIGURE_OPTS += -no-accessibility
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_QT_QTZLIB),y)
|
ifeq ($(BR2_PACKAGE_QT_QTZLIB),y)
|
||||||
QT_CONFIGURE_OPTS += -qt-zlib
|
QT_CONFIGURE_OPTS += -qt-zlib
|
||||||
else
|
else
|
||||||
@ -520,7 +526,6 @@ define QT_CONFIGURE_CMDS
|
|||||||
-no-xinerama \
|
-no-xinerama \
|
||||||
-no-cups \
|
-no-cups \
|
||||||
-no-nis \
|
-no-nis \
|
||||||
-no-accessibility \
|
|
||||||
-no-separate-debug-info \
|
-no-separate-debug-info \
|
||||||
-prefix /usr \
|
-prefix /usr \
|
||||||
-plugindir /usr/lib/qt/plugins \
|
-plugindir /usr/lib/qt/plugins \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user