From 899fe08f20d8d5353123f09ddc307589f07d8e83 Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Fri, 10 Feb 2017 11:58:15 -0500 Subject: [PATCH] Remove KICAD_USE_SCH_IO_MANAGER build option from docs and build info. --- Documentation/development/compiling.md | 5 ----- common/dialog_about/dialog_about.cpp | 7 ------- 2 files changed, 12 deletions(-) diff --git a/Documentation/development/compiling.md b/Documentation/development/compiling.md index 54a0a118f0..744c27fc77 100644 --- a/Documentation/development/compiling.md +++ b/Documentation/development/compiling.md @@ -155,11 +155,6 @@ The KICAD_SPICE option is used to control if the Spice simulator interface for E this option is enabled, it requires [ngspice][] to be available as a shared library. This option is disabled by default. -## New schematic file format ## {#sch_io_mgr_opt} - -The KICAD_USE_SCH_IO_MANAGER option is used to control if the new Eeschema I/O manager for handling -schematic and symbol library I/O is enabled. This option is disabled by default. - ## STEP/IGES support for the 3D viewer ## {#oce_opt} The KICAD_USE_OCE is used for the 3D viewer plugin to support STEP and IGES 3D models. Build tools diff --git a/common/dialog_about/dialog_about.cpp b/common/dialog_about/dialog_about.cpp index b4d8ebef2a..70aca0b0f9 100644 --- a/common/dialog_about/dialog_about.cpp +++ b/common/dialog_about/dialog_about.cpp @@ -539,13 +539,6 @@ void dialog_about::OnCopyVersionInfo( wxCommandEvent& event ) msg_version << OFF; #endif - msg_version << " KICAD_USE_SCH_IO_MANAGER="; -#ifdef KICAD_USE_SCH_IO_MANAGER - msg_version << ON; -#else - msg_version << OFF; -#endif - msg_version << " KICAD_USE_OCE="; #ifdef KICAD_USE_OCE msg_version << ON;