Index: trunk/doc/TODO =================================================================== --- trunk/doc/TODO (revision 456) +++ trunk/doc/TODO (revision 457) @@ -5,6 +5,7 @@ - DOC: pool node on how to create and load a "project file" action script that loads specific file names and assigns colors to the resulting layers [report: Alain] librnd 3.2.0: + - enable rnd_ver_str in build_run.c - probably need scconfig for the optional exporters - BUG: build: move pkgconfig for freetype from Makefile to configure; or introduce scconfig - build_run.c should print runtime librnd version the same way as sch-rnd does Index: trunk/src/build_run.c =================================================================== --- trunk/src/build_run.c (revision 456) +++ trunk/src/build_run.c (revision 457) @@ -58,8 +58,9 @@ first_time = 0; gds_init(&info); gds_append_str(&info, "This is camv-rnd " CAMV_VERS " (" /*CAMV_REVISION*/ ")" "\nan elecstronics "); - gds_append_str(&info, "related CAM file viewer\nfrom the Ringdove EDA suite\ncompiled using librnd version " RND_VER_STR "\nrunning with librnd version "); - gds_append_str(&info, rnd_ver_str); +TODO("librnd 3.2: enable rnd_ver_str"); + gds_append_str(&info, "related CAM file viewer\nfrom the Ringdove EDA suite\ncompiled using librnd version " RND_VER_STR /*"\nrunning with librnd version "*/); +/* gds_append_str(&info, rnd_ver_str);*/ gds_append(&info, '\n'); } return info.array;