Bo Peng wrote:
I upgrade automake and autoconf but the problem remains.
bpeng@bp6:~ % automake --version
automake (GNU automake) 1.7
bpeng@bp6:~ % autoconf --version
autoconf (GNU Autoconf) 2.54
bpeng@bp6:~/lyx-devel % ./autogen.sh
Using autoconf (GNU Autoconf) 2.54
This autoconf version is not supported by LyX.
LyX only supports autoconf 2.13 and 2.53.
I bet you're in trouble 'cause your 2.54 != 2.53.
2.52 or 2.53 should do, though.
Don't know about automake 1.7; I'm not at all an autotool guru!
---
The error message by autogen.sh is not correct and could be
confusing. The weeny patch below fixes that:
RCS file: /cvs/lyx/lyx-devel/autogen.sh,v
retrieving revision 1.38
diff -u -r1.38 autogen.sh
--- autogen.sh 2002/10/15 08:10:57 1.38
+++ autogen.sh 2002/10/30 05:36:32
@@ -26,7 +26,7 @@
;;
*)
echo "This autoconf version is not supported by LyX."
- echo "LyX only supports autoconf 2.13 and 2.53."
+ echo "LyX only supports autoconf 2.13, 2.52 and 2.53."
exit
;;
esac
Regards,
Rob.