Debian

編譯 gettext 時出錯

  • August 3, 2017

我收到此錯誤消息,嘗試使用 Linux 核心 2.4 編譯 gettext

libtool: compile:  gcc -DHAVE_CONFIG_H -DEXEEXT=\"\" -DEXEEXT=\"\" -DEXEEXT=\"\" -I. -I.. -I../intl -I../intl -I.. -I.. -DDEPENDS_ON_LIBICONV=1 -DDEPENDS_ON_LIBINTL=1 -DLIBXML_STATIC -I./libcroco -g -O2 -c uniname/uniname.c  -fPIC -DPIC -o uniname/.libs/uniname.o
In file included from uniname/uniname.c:26:
string.h:893: warning: `strstr' redefined
/usr/include/bits/string2.h:1070: warning: this is the location of the previous definition
uniname/uniname.c: In function `unicode_name_character':
uniname/uniname.c:410: parse error before `words'
uniname/uniname.c:424: `wordptr' undeclared (first use in this function)
uniname/uniname.c:424: (Each undeclared identifier is reported only once
uniname/uniname.c:424: for each function it appears in.)
uniname/uniname.c:424: `words' undeclared (first use in this function)
make[5]: *** [uniname/uniname.lo] Error 1
make[5]: Leaving directory `/home/niklros/gettext-0.19.8.1/gettext-tools/gnulib-lib'
make[4]: *** [all] Error 2
make[4]: Leaving directory `/home/niklros/gettext-0.19.8.1/gettext-tools/gnulib-lib'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/home/niklros/gettext-0.19.8.1/gettext-tools'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/home/niklros/gettext-0.19.8.1/gettext-tools'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/niklros/gettext-0.19.8.1'
make: *** [all] Error 2

我能做些什麼呢?

提到的版本gettext是在 2016 年發布的,而 Linux 核心版本可以追溯到 2003 年左右(對於 Debian,可能只比該gettext版本早十年)。考慮到這麼舊的核心以及開發人員的偏好(包括對更新工具鏈功能的依賴),開發人員不太可能再“支持”該版本的 Linux。

另一方面,您可以做的(如果您有耐心的話)很可能是將新(呃)移植gettext到舊系統。

或者(少得多的工作):由於有一個與 Linux 2.4 並發的 gettext 版本,您可以簡單地安裝與它一起工作的版本,例如 0.13 或 0.14(參見ftp 站點)。

引用自:https://unix.stackexchange.com/questions/383708