-
-
Notifications
You must be signed in to change notification settings - Fork 641
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
53e9d28
commit 99e6d69
Showing
2 changed files
with
8 additions
and
1 deletion.
There are no files selected for viewing
Submodule liblouis
updated
25 files
+1 −1 | .github/workflows/fuzzing.yml | |
+1 −0 | .gitignore | |
+3 −1 | extra/generate-display-names/display-names | |
+1 −1 | extra/generate-display-names/displayLanguage.go | |
+41 −0 | gnulib/Makefile.am | |
+2 −0 | gnulib/m4/gnulib-cache.m4 | |
+19 −0 | gnulib/m4/gnulib-comp.m4 | |
+46 −0 | gnulib/m4/strcase.m4 | |
+63 −0 | gnulib/m4/strings_h.m4 | |
+60 −0 | gnulib/strcasecmp.c | |
+127 −0 | gnulib/strings.in.h | |
+60 −0 | gnulib/strncasecmp.c | |
+10 −1 | liblouis/metadata.c | |
+2 −0 | tables/Makefile.am | |
+98 −0 | tables/ancient-languages-borger.utb | |
+98 −0 | tables/ancient-languages-us.utb | |
+81 −103 | tables/hbo.utb | |
+4 −4 | tests/Makefile.am | |
+1 −0 | tests/braille-specs/akk-borger.yaml | |
+1 −0 | tests/braille-specs/akk.yaml | |
+2 −0 | tests/braille-specs/cuneiform-transliterated.yaml | |
+59 −0 | tests/braille-specs/grc-international-composed.yaml | |
+107 −11 | tests/braille-specs/hbo.yaml | |
+2 −0 | tests/braille-specs/syc.yaml | |
+2 −0 | tests/braille-specs/uga.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/* | ||
* liblouis/liblouis#1685: liblouis started using strncasecmp, which is not available on Windows. | ||
* Neither can Gnulib be used with NVDA's buildssystem. | ||
* Therefore, use _strnicmp as a drop-in replacement. | ||
*/ | ||
|
||
#define strncasecmp _strnicmp |