On some distros autogen.sh fails with complaints about AM_NLS and other macros 
being undef'ed.

Following the intltoolize prompt:

"You should add the contents of '/usr/share/aclocal/intltool.m4' to 
'aclocal.m4'"

does not solve the problem.

Running 'aclocal -I m4 --force --install' before running intltoolize will 
solve it.  The following patch is attached.


diff --git a/autogen.sh b/autogen.sh
index 17d69af..f4daf08 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -43,6 +43,7 @@ touch ChangeLog AUTHORS
 
 mkdir -p m4
 
+aclocal -I m4 --force --install
 intltoolize --force
 gtkdocize || exit 1
 autoreconf -if



Thomas Downing
Senior Software Developer
+1.601.607.8350

BOMGAR | The Box That's Revolutionizing Remote Supportâ„¢
One of the Fastest-Growing Technology Companies in America |  Technology Fast 
500â„¢ 
diff --git a/autogen.sh b/autogen.sh
index 17d69af..f4daf08 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -43,6 +43,7 @@ touch ChangeLog AUTHORS
 
 mkdir -p m4
 
+aclocal -I m4 --force --install
 intltoolize --force
 gtkdocize || exit 1
 autoreconf -if
_______________________________________________
Entangle-devel mailing list
Entangle-devel@gna.org
https://mail.gna.org/listinfo/entangle-devel

Reply via email to