[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
cannot compile under cygwin because of gnulib/uninorm
From: |
Denis Excoffier |
Subject: |
cannot compile under cygwin because of gnulib/uninorm |
Date: |
Tue, 3 Dec 2024 20:14:42 +0100 |
Hello,
I tried to build gettext-0.23 under cygwin (recent).
It failed with two errors to a reference to a non const variable.
I had to apply the following (see below) and this is fine now.
gettext-0.22.5 was ok.
Regards,
Denis Excoffier.
diff -uNr gettext-0.23o/gettext-tools/gnulib-lib/uninorm/nfc.c
gettext-0.23p/gettext-tools/gnulib-lib/uninorm/nfc.c
--- gettext-0.23o/gettext-tools/gnulib-lib/uninorm/nfc.c 2024-08-15
23:15:27.000000000 +0200
+++ gettext-0.23p/gettext-tools/gnulib-lib/uninorm/nfc.c 2024-12-03
15:03:50.410262300 +0100
@@ -27,5 +27,5 @@
NF_IS_COMPOSING,
uc_canonical_decomposition,
uc_composition,
- &uninorm_nfd
+ &uninorm_nfc
};
diff -uNr gettext-0.23o/gettext-tools/gnulib-tests/uninorm/nfkc.c
gettext-0.23p/gettext-tools/gnulib-tests/uninorm/nfkc.c
--- gettext-0.23o/gettext-tools/gnulib-tests/uninorm/nfkc.c 2024-08-15
23:11:59.000000000 +0200
+++ gettext-0.23p/gettext-tools/gnulib-tests/uninorm/nfkc.c 2024-12-03
15:04:13.826666900 +0100
@@ -36,5 +36,5 @@
NF_IS_COMPAT_DECOMPOSING | NF_IS_COMPOSING,
uc_compat_decomposition,
uc_composition,
- &uninorm_nfkd
+ &uninorm_nfkc
};
- cannot compile under cygwin because of gnulib/uninorm,
Denis Excoffier <=
- Re: cannot compile under cygwin because of gnulib/uninorm, Bruno Haible, 2024/12/04
- Re: cannot compile under cygwin because of gnulib/uninorm, Brian Inglis, 2024/12/04
- Re: gettext binaries for Cygwin, Bruno Haible, 2024/12/04
- Re: gettext binaries for Cygwin, Brian Inglis, 2024/12/04
- Re: gettext binaries for Cygwin, Bruno Haible, 2024/12/04
- Re: gettext binaries for Cygwin, Brian Inglis, 2024/12/04
- Re: gettext binaries for Cygwin, Bruno Haible, 2024/12/04
- Re: gettext binaries for Cygwin, Brian Inglis, 2024/12/04
- Re: gettext binaries for Cygwin, Bruno Haible, 2024/12/04
- Re: gettext binaries for Cygwin, Brian . Inglis, 2024/12/04