Index: trunk/src/build_run.c =================================================================== --- trunk/src/build_run.c (revision 18374) +++ trunk/src/build_run.c (revision 18375) @@ -5,6 +5,7 @@ * (this file is based on PCB, interactive printed circuit board design) * Copyright (C) 1994,1995,1996,2006 Thomas Nau * pcb-rnd Copyright (C) 2017,2018 Alain Vigne + * pcb-rnd Copyright (C) 2018 Tibor 'Igor2' Palinkas * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -212,32 +213,6 @@ return info.array; } -char *pcb_get_infostr(void) -{ - static gds_t info; - static int first_time = 1; - char *tmp; - - if (first_time) { - first_time = 0; - gds_init(&info); - - tmp = pcb_get_info_program(); - gds_append_str(&info, tmp); - tmp = pcb_get_info_copyright(); - gds_append_str(&info, tmp); - gds_append_str(&info, "\n\n"); - tmp = pcb_get_info_license(); - gds_append_str(&info, tmp); - tmp = pcb_get_info_websites(NULL); - gds_append_str(&info, tmp); - - tmp = pcb_get_info_compile_options(); - gds_append_str(&info, tmp); - } - return info.array; -} - const char *pcb_author(void) { if (conf_core.design.fab_author && conf_core.design.fab_author[0]) Index: trunk/src/build_run.h =================================================================== --- trunk/src/build_run.h (revision 18374) +++ trunk/src/build_run.h (revision 18375) @@ -48,10 +48,6 @@ /* Returns a string that has a bunch of information about the options selected at compile time. */ char *pcb_get_info_compile_options(void); -/* Returns a string that has a bunch of information about this copy of pcb. - Can be used for things like "about" dialog boxes. */ -char *pcb_get_infostr(void); - /* Author's name: either from the config system (typically from the design) or as a last resort from the OS */ const char *pcb_author(void);