Index: trunk/src/main.c =================================================================== --- trunk/src/main.c (revision 34757) +++ trunk/src/main.c (revision 34758) @@ -92,9 +92,6 @@ #define CONF_USER_DIR "~/" DOT_PCB_RND const char *rnd_conf_userdir_path, *rnd_conf_user_path; const char *rnd_conf_sysdir_path, *rnd_conf_sys_path; -const char *rnd_app_package = PCB_PACKAGE; -const char *rnd_app_version = PCB_VERSION; -const char *rnd_app_url = "http://repo.hu/projects/pcb-rnd"; /* Figure out the canonical name of the executed program and fix up the defaults for various paths; returns exec prefix that @@ -421,6 +418,9 @@ rnd_app.menu_file_paths = menu_file_paths; rnd_app.menu_name_fmt = menu_name_fmt; rnd_app.default_embedded_menu = rnd_hidlib_default_embedded_menu; + rnd_app.package = PCB_PACKAGE; + rnd_app.version = PCB_VERSION; + rnd_app.url = "http://repo.hu/projects/pcb-rnd"; rnd_conf_dot_dir = DOT_PCB_RND; rnd_conf_lib_dir = PCBLIBDIR; Index: trunk/util/gsch2pcb-rnd/glue.c =================================================================== --- trunk/util/gsch2pcb-rnd/glue.c (revision 34757) +++ trunk/util/gsch2pcb-rnd/glue.c (revision 34758) @@ -32,10 +32,6 @@ void rnd_hidlib_crosshair_move_to(rnd_hidlib_t *hl, rnd_coord_t abs_x, rnd_coord_t abs_y, int mouse_mot) { } - -const char *rnd_app_version = PCB_VERSION; -const char *rnd_app_url = "http://repo.hu/projects/pcb-rnd"; - void *rnd_hidlib_crosshair_suspend(rnd_hidlib_t *hl) { return NULL; } void rnd_hidlib_crosshair_restore(rnd_hidlib_t *hl, void *susp_data) {} void rnd_draw_marks(rnd_hidlib_t *hidlib, rnd_bool inhibit_drawing_mode) {}