>>>>> "Lars" == Lars Gullik Bj�nnes <[EMAIL PROTECTED]> writes:
Lars> It would be nice if people could check that this works with Lars> automake older than 1.8.3 and 1.7.8. I have tested those with Lars> distcheck. (Or do we now require automake > 1.7?) (what version Lars> of automake is in RH9?) I began to test it, and seem to have problems with 'make distcheck' because configure is re-run without any of the special flags that are needed here for compilation to succeed. But once I discovered the magic DISTCHECK_CONFIGURE_FLAGS variable, everything went smoothly. It even seems that we can get rid of the xgettext hack that we had in configure.ac. However, the new code requires xgettext 0.12.1, and all I have on rh9 is 0.11.4. As a consequence (?), all the po files are updated to remove all references to .[Ch] files, which is unfortunate. I'll try to reintroduce my configure.ac trick and see whether it improves the situation. BTW, I have the following patch in my tree for some time, and it seems that it is necessary for automake 1.6.3 (because there is no Makefile.am in m4/). JMarc
Index: Makefile.am =================================================================== RCS file: /usr/local/lyx/cvsroot/lyx-devel/Makefile.am,v retrieving revision 1.48 diff -u -p -r1.48 Makefile.am --- Makefile.am 9 Jun 2004 13:14:35 -0000 1.48 +++ Makefile.am 9 Jun 2004 14:15:46 -0000 @@ -9,9 +9,9 @@ MAINTAINERCLEANFILES += $(srcdir)/acloca DIST_SUBDIRS = m4 config development intl po boost src sourcedoc lib if USE_INCLUDED_BOOST -SUBDIRS = m4 config development intl po boost src sourcedoc lib +SUBDIRS = config development intl po boost src sourcedoc lib else -SUBDIRS = m4 config development intl po src sourcedoc lib +SUBDIRS = config development intl po src sourcedoc lib endif EXTRA_DIST = ANNOUNCE INSTALL.OS2 INSTALL.autoconf README.OS2 \
