I am trying to get libintl.so
compiled on musl-based distro, but running ./configure && make
in the directory containing source code, which I get from https://savannah.gnu.org/projects/gettext/ does not build any libintl objects. Furthermore, libintl.h
seems to not exist in that directory as well. What's the deal?
Asked
Active
Viewed 738 times
0

beardeadclown
- 327
- 2
- 14
-
Could you share the full build log? – valiano Oct 24 '20 at 18:43
-
The file `libintl.h` is not included in gettext but used if present (and usable) on your system. In the output of configure you will find the lines "checking libintl.h usability..." and "checking libintl.h presence..." that show the results of this test. – Guido Flohr Oct 26 '20 at 18:15
-
1You should also be aware that the tarball that you download contains the sources for the gettext-tools and gettext-runtime. The shared library `libintl.so` that you want to build is part of `gettext-runtime`. – Guido Flohr Oct 26 '20 at 18:16