-
Notifications
You must be signed in to change notification settings - Fork 260
JBR-9994 Enable AccessibleAnnouncer for both X11 and Wayland #587
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
b6a35f9
2e9c945
8e40f33
3b7416a
0f8b5f3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -280,18 +280,6 @@ ifeq ($(call isTargetOs, windows macosx), false) | |
| common/font \ | ||
| # | ||
|
|
||
| ifeq ($(A11Y_SPEECHD_ANNOUNCING_ENABLED), true) | ||
| A11Y_SPEECHD_ANNOUNCING_CFLAGS := | ||
| else | ||
| A11Y_SPEECHD_ANNOUNCING_CFLAGS := -DNO_A11Y_SPEECHD_ANNOUNCING | ||
| endif | ||
|
|
||
| ifeq ($(call isTargetOs, linux), true) | ||
| LIBAWT_XAWT_EXTRA_SRC += \ | ||
| $(TOPDIR)/src/$(MODULE)/linux/native/libawt_xawt \ | ||
| # | ||
| endif | ||
|
|
||
| LIBAWT_XAWT_EXCLUDES := medialib debug wl $(VULKAN_EXCLUDES) | ||
|
|
||
| LIBPIPEWIRE_HEADER_DIRS := \ | ||
|
|
@@ -303,6 +291,7 @@ ifeq ($(call isTargetOs, windows macosx), false) | |
| include \ | ||
| common/awt/debug \ | ||
| common/awt/systemscale \ | ||
| common/awt/AccessibleAnnouncer \ | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think we should expose the headers from that directory because they're only supposed to be used by that directory itself. I'd say
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| common/font \ | ||
| common/java2d/opengl \ | ||
| common/java2d/x11 | ||
|
|
@@ -315,10 +304,19 @@ ifeq ($(call isTargetOs, windows macosx), false) | |
| LIBAWT_XAWT_CFLAGS += -DXAWT -DXAWT_HACK \ | ||
| $(FONTCONFIG_CFLAGS) \ | ||
| $(CUPS_CFLAGS) \ | ||
| $(SPEECHD_CFLAGS) \ | ||
| $(A11Y_SPEECHD_ANNOUNCING_CFLAGS) \ | ||
| # | ||
|
|
||
| # Setup speech-dispatcher a11y announcer for Linux xawt | ||
| ifeq ($(call isTargetOs, linux), true) | ||
| ifeq ($(A11Y_SPEECHD_ANNOUNCING_ENABLED), true) | ||
| A11Y_SPEECHD_ANNOUNCING_CFLAGS := $(SPEECHD_CFLAGS) | ||
| else | ||
| A11Y_SPEECHD_ANNOUNCING_CFLAGS := $(SPEECHD_CFLAGS) -DNO_A11Y_SPEECHD_ANNOUNCING | ||
| endif | ||
|
|
||
| LIBAWT_XAWT_CFLAGS += $(A11Y_SPEECHD_ANNOUNCING_CFLAGS) | ||
|
OnePatchGuy marked this conversation as resolved.
Outdated
|
||
| endif | ||
|
|
||
| ifeq ($(call isTargetOs, linux), true) | ||
| ifeq ($(DISABLE_XRENDER), true) | ||
| LIBAWT_XAWT_CFLAGS += -DDISABLE_XRENDER_BY_DEFAULT=true | ||
|
|
@@ -408,6 +406,7 @@ ifeq ($(call isTargetOs, windows macosx), false) | |
| include \ | ||
| common/awt/debug \ | ||
| common/awt/systemscale \ | ||
| common/awt/AccessibleAnnouncer \ | ||
|
OnePatchGuy marked this conversation as resolved.
Outdated
|
||
| common/font \ | ||
| common/java2d \ | ||
| common/java2d/wl \ | ||
|
|
@@ -425,6 +424,17 @@ ifeq ($(call isTargetOs, windows macosx), false) | |
| $(VULKAN_FLAGS) \ | ||
| $(CUPS_CFLAGS) | ||
|
|
||
| # Setup speech-dispatcher a11y announcer for Linux wlawt | ||
| ifeq ($(call isTargetOs, linux), true) | ||
| ifeq ($(A11Y_SPEECHD_ANNOUNCING_ENABLED), true) | ||
| A11Y_SPEECHD_ANNOUNCING_CFLAGS_WLAWT := $(SPEECHD_CFLAGS) | ||
| else | ||
| A11Y_SPEECHD_ANNOUNCING_CFLAGS_WLAWT := $(SPEECHD_CFLAGS) -DNO_A11Y_SPEECHD_ANNOUNCING | ||
| endif | ||
|
|
||
| LIBAWT_WLAWT_CFLAGS += $(A11Y_SPEECHD_ANNOUNCING_CFLAGS_WLAWT) | ||
| endif | ||
|
|
||
|
OnePatchGuy marked this conversation as resolved.
Outdated
|
||
| LIBAWT_WLAWT_LIBS := $(LIBM) -lawt $(WAYLAND_LIBS) $(LIBDL) -ljava -ljvm -lrt | ||
|
|
||
| ifeq ($(call isTargetOs, linux), true) | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.