From: Michael 'h. K. <mai...@zz...> - 2004-08-19 21:11:56
|
Hello there, I have recently installed gentoo linux on my laptop and, of course, compiled mailync on the system. Well, it compiles with almost no problem, but the patch below makes the compile (and cvs update operation) smoother. Basically, it adds the file generated by the installed autotools version to .cvsignore and requests a proper automake version by exporting environment variable. That simple. Should we suggest an ebuild to gentoo people? (I can prepare one) Love, H Index: .cvsignore =================================================================== RCS file: /cvsroot/mailsync/mailsync/.cvsignore,v retrieving revision 1.5 diff -u -r1.5 .cvsignore --- .cvsignore 28 Jan 2003 09:53:30 -0000 1.5 +++ .cvsignore 19 Aug 2004 20:48:31 -0000 @@ -9,5 +9,5 @@ Makefile Makefile.in missing mkinstalldirs -stamp-h1 +stamp-h1 stamp-h.in Index: autogen.sh =================================================================== RCS file: /cvsroot/mailsync/mailsync/autogen.sh,v retrieving revision 1.3 diff -u -r1.3 autogen.sh --- autogen.sh 1 Jun 2004 08:53:32 -0000 1.3 +++ autogen.sh 19 Aug 2004 20:48:31 -0000 @@ -1,5 +1,7 @@ #!/bin/sh -( automake --version | head -1 | grep -q ' 1\.[678]') || (echo "automake 1.6 or above is required"; exit 1) +WANT_AUTOMAKE=1.8 +export WANT_AUTOMAKE +( automake --version | head -n 1 | grep -q ' 1\.[678]') || (echo "automake 1.6 or above is required"; exit 1) aclocal -I acinclude && \ autoheader && \ automake -a && \ |