-
Notifications
You must be signed in to change notification settings - Fork 63
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
Request to switch anthy-unicode #166
Comments
OK. |
Thank you! |
After using autogen.sh to create configure and run it with --enable-anthy-utf8, configure can't find anthy-utf8 because the checking function use "anthy >= 8622", but the current anthy-utf8 version is "Version: 1.0.0.20211224". /usr/lib64/pkgconfig/anthy-unicode.pc on Slackware64-Current
|
We need to use diff --git a/configure.ac b/configure.ac
index 56fb1dd4..14d923b4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -141,11 +141,16 @@ AC_ARG_WITH(anthy-utf8,
[with_anthy_utf8=no])
if test "x$with_anthy_utf8" != xno; then
- PKG_CHECK_MODULES(ANTHY_UTF8, anthy >= 8622,
+ PKG_CHECK_MODULES(ANTHY_UTF8,
+ anthy-unicode,
[with_anthy_utf8=yes
AC_DEFINE(LIBANTHY_UTF8_CAPABLE, 1,
[libanthy can handle UTF-8])],
- with_anthy_utf8=no)
+ [PKG_CHECK_MODULES(ANTHY_UTF8, anthy >= 8622,
+ [with_anthy_utf8=yes
+ AC_DEFINE(LIBANTHY_UTF8_CAPABLE, 1,
+ [libanthy can handle UTF-8])],
+ with_anthy_utf8=no)])
fi
AM_CONDITIONAL(ANTHY_UTF8, test "x$with_anthy_utf8" = xyes) |
LGTM. |
Could you open a pull request? |
I filed #189 |
I request to have an option to build uim-anthy with anthy-unicode because anthy has not been updated officially.
I develop and maintain anthy-unicode which is forked from anthy and ibus-anthy has already used anthy-unicode.
I agreed with the original anthy maintainer to develop anthy-unicode.
anthy-unicode changes:
The text was updated successfully, but these errors were encountered: