Index: trunk/config.auto.h.in =================================================================== --- trunk/config.auto.h.in (revision 2462) +++ trunk/config.auto.h.in (revision 2463) @@ -222,29 +222,10 @@ /****************************************************************************/ /* Paths */ -/* library file name */ -#define LIBRARYFILENAME "pcblib" - #define PCB_PREFIX "@/local/prefix@" #define PCBSHAREDIR PCB_PREFIX "/share/pcb-rnd" #define PCBLIBDIR PCB_PREFIX "/lib/pcb-rnd" -#define PCB_LIBRARY_SHELL NULL -#define PCB_LIBRARY_SEARCH_PATHS \ - "./pcblib"\ - ":" \ - "./footprints"\ - ":" \ - "../pcblib"\ - ":" \ - PCB_PREFIX "/share/pcb-rnd/pcblib"\ - ":"\ - PCB_PREFIX "/share/pcb/pcblib-newlib" -/* NOTE: /share/pcb/pcblib-newlib is kept as a temporary hack for compatibility */ - -#define PCB_DEFAULT_PCB_FILE PCBSHAREDIR "/default.pcb" -#define PCB_DEFAULT_PCB_FILE_SRC "./default.pcb" - #define BINDIR PCB_PREFIX "/bin" /* Relative path from bindir to exec_prefix */ Index: trunk/util/gsch2pcb-rnd/help.c =================================================================== --- trunk/util/gsch2pcb-rnd/help.c (revision 2462) +++ trunk/util/gsch2pcb-rnd/help.c (revision 2463) @@ -107,11 +107,6 @@ " GNETLIST If set, this specifies the name of the gnetlist program\n" " to execute.\n" "\n" - "Defaults:\n" - " Element search paths:\n" - " " PCB_LIBRARY_SEARCH_PATHS "\n" - " Element shell paths: %s\n" - "\n" "Additional Resources:\n" "\n" " gnetlist user guide: http://wiki.geda-project.org/geda:gnetlist_ug\n" @@ -122,7 +117,7 @@ void usage(void) { puts(usage_string0); - printf(usage_string1, (PCB_LIBRARY_SHELL == NULL ? "" : PCB_LIBRARY_SHELL)); + printf(usage_string1); exit(0); }