GNU tools gettext not found Compilation error

Dear sir: I have compiled the linphone source code on ubuntu linux. And found an error: GNU gettext tool not found. #required for intltool

I doubt that intltool will not be installed correctly or the GNU Tool is not in excellent condition. But I do not know where to download the installation software.

I would appreciate it if anyone would get me an answer.

+3
source share
2 answers

You can use the apt repository as follows:

apt-get update
apt-get upgrade
apt-get install gettext libgettextpo-dev

and you can take a look at the full gettext targets available with apt-cache:

apt-cache search gettext | grep gettext
+4
source

Anyway,

I already found a way out.

I can disable the GNU gettext tools here:

http://www.icewalkers.com/Linux/Software/513960/gettext.html

.

+3

All Articles