>>>>> "Paul" == Paul Smith <[EMAIL PROTECTED]> writes:
Paul> I am using LyX 1.3.5. However, I can try your package if you
Paul> tell me how to get the 1.3.6cvs version of LyX. (I can get the
Paul> 1.4.0cvs from ftp.sylvan.com, but not the 1.3.6cvs.)
OK, in 1.3.5, find in config/confgure.ac the bit of code that reads:
AC_ARG_WITH(aiksaurus,
[ --without-aiksaurus do not use the Aiksaurus library],
[lyx_use_aiksaurus=$withval])
if test x$lyx_use_aiksaurus != xno; then
AC_CHECK_LIB(Aiksaurus, main,
[AC_DEFINE(HAVE_LIBAIKSAURUS,1,[Define this if you have the AikSaurus
library])
AIKSAURUS_LIBS="-lAiksaurus -lbz2"
],,"-lbz2")
Replace the last line with
])
[this means that we think aiksaurus does not need the libbz2 library
to operate]
Then run ./autoconf.sh and the configure as usual. Does it (still)
work?
JMarc