Is this all that is needed to use tex2lyx as default latex->lyx translator? Or are there some importer stuff that must be done as well?
? tex2lyx-1.diff Index: configure.m4 =================================================================== RCS file: /usr/local/lyx/cvsroot/lyx-devel/lib/configure.m4,v retrieving revision 1.81 diff -u -p -w -b -B -r1.81 configure.m4 --- configure.m4 14 Sep 2004 10:20:37 -0000 1.81 +++ configure.m4 25 Sep 2004 10:54:58 -0000 @@ -251,13 +251,13 @@ SEARCH_PROG([for a raster image viewer], SEARCH_PROG([for a raster image editor], RASTERIMAGE_EDITOR, gimp) -# Search for an installed reLyX or a ready-to-install one +# Search for an installed tex2lyx or a ready-to-install one save_PATH=${PATH} -PATH=${PATH}:./reLyX/ -SEARCH_PROG([for a LaTeX -> LyX converter],tex_to_lyx_command,reLyX) +PATH=${PATH}:../src/tex2lyx/ +SEARCH_PROG([for a LaTeX -> LyX converter],tex_to_lyx_command,tex2lyx) PATH=${save_PATH} -test $tex_to_lyx_command = "reLyX" && tex_to_lyx_command="reLyX -f \$\$i" -tex_to_lyx_command=`echo $tex_to_lyx_command | sed "s,reLyX,reLyX$version_suffix,"` +test $tex_to_lyx_command = "tex2lyx" && tex_to_lyx_command="tex2lyx \$\$i" +tex_to_lyx_command=`echo $tex_to_lyx_command | sed "s,tex2lyx,tex2lyx$version_suffix,"` SEARCH_PROG([for a Noweb -> LyX converter],literate_to_lyx_command,noweb2lyx) test $literate_to_lyx_command = "noweb2lyx" && literate_to_lyx_command="noweb2lyx \$\$i \$\$o"
-- Lgb