Pavel Sanda <sa...@lyx.org> writes: > this is in fact showstopper, because i dont see any way how to do this. > we just got #6352 from another distro.
I am currently trying out 1.6.x with ubuntu 9.10. I took the autogen.sh from trunk, because we also have to forbid automake < 1.8 (because we use gettext 0.16.1). My testing show that everything seems to work with trunk autogen.sh. I need the following additional patch which is due to bash's test command: it now refuses the wrong test "a == b" and wants only "a = b". (see r32218 in trunk). So, shall I backport autogen.sh from trunk and backport r32218 ? JMarc
svndiff config Index: config/lyxinclude.m4 =================================================================== --- config/lyxinclude.m4 (révision 32082) +++ config/lyxinclude.m4 (copie de travail) @@ -29,7 +29,7 @@ AC_ARG_ENABLE(build-type, build_type=prerelease;; esac]) AC_MSG_RESULT([$build_type]) -if test $lyx_devel_version == yes ; then +if test $lyx_devel_version = yes ; then AC_DEFINE(DEVEL_VERSION, 1, [Define if you are building a development version of LyX]) LYX_DATE="not released yet" fi