Index: scconfig/gen_conf.sh =================================================================== --- scconfig/gen_conf.sh (revision 2392) +++ scconfig/gen_conf.sh (revision 2393) @@ -97,7 +97,7 @@ doc_head(fn, path_tmp) type2 = tolower(type) sub("^cfn_", "", type2) - + print "", name, "", type2, "", flags, "", desc > fn } } @@ -114,4 +114,4 @@ for(fn in DOCS) doc_foot(fn) } -' \ No newline at end of file +' Index: scconfig/hooks.c =================================================================== --- scconfig/hooks.c (revision 2392) +++ scconfig/hooks.c (revision 2393) @@ -36,7 +36,7 @@ static void help1(void) { - printf("./configure: configure pcn-rnd.\n"); + printf("./configure: configure pcb-rnd.\n"); printf("\n"); printf("Usage: ./configure [options]\n"); printf("\n"); @@ -53,7 +53,7 @@ } /* Runs when a custom command line argument is found - returns true if no furhter argument processing should be done */ + returns true if no further argument processing should be done */ int hook_custom_arg(const char *key, const char *value) { if (strcmp(key, "prefix") == 0) { @@ -157,7 +157,7 @@ if (want_stroke) { require("libs/gui/libstroke/presents", 0, 0); if (!istrue(get("libs/gui/libstroke/presents"))) { - report_repeat("WARNING: Since there's no libstroke found, disabling the stroke plugin...\n"); + report_repeat("WARNING: Since there's no libstroke found, disabling the stroke plugin...\n"); hook_custom_arg("disable-stroke", NULL); } } @@ -165,7 +165,7 @@ if (want_gtk) { require("libs/gui/gtk2/presents", 0, 0); if (!istrue(get("libs/gui/gtk2/presents"))) { - report_repeat("WARNING: Since there's no libgtk2 found, disabling the gtk hid...\n"); + report_repeat("WARNING: Since there's no libgtk2 found, disabling the gtk hid...\n"); hook_custom_arg("disable-hid_gtk", NULL); } } @@ -177,7 +177,7 @@ require("libs/gui/xrender/presents", 0, 0); } else { - report_repeat("WARNING: Since there's no lesstif2 found, disabling the lesstif HID and xinerama and xrender...\n"); + report_repeat("WARNING: Since there's no lesstif2 found, disabling the lesstif HID and xinerama and xrender...\n"); hook_custom_arg("disable-xinerama", NULL); hook_custom_arg("disable-xrender", NULL); hook_custom_arg("disable-hid_lesstif", NULL); @@ -229,7 +229,7 @@ if (want_gd) { require("libs/gui/gd/presents", 0, 0); if (!istrue(get("libs/gui/gd/presents"))) { - report_repeat("WARNING: Since there's no libgd, disabling gd based exportes (png, nelma, gcode)...\n"); + report_repeat("WARNING: Since there's no libgd, disabling gd based exports (png, nelma, gcode)...\n"); hook_custom_arg("disable-gd-gif", NULL); hook_custom_arg("disable-gd-png", NULL); hook_custom_arg("disable-gd-jpg", NULL); Index: scconfig/plugin_3state.h =================================================================== --- scconfig/plugin_3state.h (revision 2392) +++ scconfig/plugin_3state.h (revision 2393) @@ -1,7 +1,7 @@ /* 3-state plugin system; possible states of each plugin, stored in /local/pcb/PLUGIN_NAME/controls: "disable" = do not compile it at all - "buildin" = enable, static link into the executabe + "buildin" = enable, static link into the executable "plugin" = enable, make it a dynamic link library (runtime load plugin) */