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

Re: [XaraXtreme-dev] Re: configure.in:305: error: possibly undefined macro: AM_GNU_GETTEXT



On Fri, Jun 02, 2006 at 08:23:25PM +0100, Alex Bligh wrote:
> Alex Bligh wrote:
[...]
> 
> modify autogen.sh so it says:
> 
> #!/bin/sh
> AUTOPOINT=${AUTOPOINT:autopoint}
> AUTORECONF=${AUTORECONF:autoreconf}
> # Run autopoint, ignoring errors - configure will detect them
> $AUTOPOINT --force
> $AUTORECONF -f -i -s
> 
> That will allow (e.g.) Vasil to give alternate environment variables
> for specific AUTOxxx versions.

What about this:

--- autogen.sh.diff begins here ---
Index: autogen.sh
===================================================================
--- autogen.sh	(revision 1247)
+++ autogen.sh	(working copy)
@@ -1 +1,5 @@
-autoreconf -f -i -s
+#!/bin/sh
+
+AUTORECONF=${AUTORECONF:-autoreconf}
+
+${AUTORECONF} -f -i -s
--- autogen.sh.diff ends here ---

-- 
Vasil Dimov
gro.DSBeerF@dv

Testing can show the presence of bugs, but not their absence.
                -- Edsger W. Dijkstra