autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

autoreconf and gettext


From: Vincent Torri
Subject: autoreconf and gettext
Date: Tue, 31 May 2011 09:51:00 +0200 (CEST)


Hey,

I have a library that is using gettext is available, that is, in configure.ac, i use:

m4_ifdef([AM_GNU_GETTEXT_VERSION], [
AM_GNU_GETTEXT_VERSION([0.12.1])
])

m4_ifdef([AM_GNU_GETTEXT], [
AM_GNU_GETTEXT([external])
AM_CONDITIONAL([HAVE_PO], [true])
],[
AM_CONDITIONAL([HAVE_PO], [false])
])
AC_SUBST(LTLIBINTL)

Unfortunately, when I use autoreconf -f -i on a system that has no gettext, there is an error saying that autopoint is not available while the package is using gettext.

How can I fix that problem ?

thank you

Vincent Torri



reply via email to

[Prev in Thread] Current Thread [Next in Thread]