"Setup.h" not found

Building and customizing Audacity from the source code.
Forum rules
If you require help using Audacity, please post on the forum board relevant to your operating system:
Windows
Mac OS X
GNU/Linux and Unix-like
steve
Site Admin
Posts: 81609
Joined: Sat Dec 01, 2007 11:43 am
Operating System: Linux *buntu

"Setup.h" not found

Post by steve » Sun Dec 04, 2011 6:15 pm

Windows XP SP3 (fully updated)

Microsoft Visual Studio 2008
Version 9.0.30729.1 SP
Microsoft .NET Framework
Version 3.5 SP1
Installed Edition: VC Express
Microsoft Visual C++ 2008 91909-152-0000052-60124
Microsoft Visual C++ 2008

wxWidgets-2.8.12
(downloaded wxMSW installer from http://www.wxwidgets.org/downloads/#latest_stable )

Audacity 1.3.14 revision 11348


Finally got WxWidgets compiled without errors.
When trying to build Audacity I get a load of errors:

Code: Select all

fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory

Steps that I took before attempting to build:

Added to environment variables:
Variable Name: WXWIN
Variable Value: C:wxWidgets­-2.8.12
Closed all three of the dialogs, close the control panel and rebooted.

Copy c:wxWidgetsincludewxmswsetup0.h
to c:wxWidgetsincludewxmswsetup.h

Did NOT change any of the #defines

Built WxWidgets:
  1. Debug
  2. Release
  3. Unicode Debug
  4. Unicode Release
  5. DLL DLL Debug
  6. DLL Release
  7. DLL Unicode Debug
  8. DLL Unicode Release
Copied dll's as required from C:wxWidgets-2.8.12libvc_lib to C:wxWidgets-2.8.12libvc_dll
All 7 builds completed successfully with no errors.

SVN Checkout to C:Documents and Settings<user name>My Documentsaudacity
Created folder C:Documents and Settings<user name>My DocumentsaudacitywxLibsUnicode Release
Copied the following files into that folder:
wxbase28u_net_vc_custom.dll
wxbase28u_vc_custom.dll
wxmsw28u_adv_vc_custom.dll
wxmsw28u_core_vc_custom.dll
wxmsw28u_html_vc_custom.dll

Double clicked on audacity.sln
Set "Build > Configuration Manager > Active solution configuration" to "Unicode Release".
Then,
"Build > Build Solution"

I get several hundred errors of the type:

Code: Select all

C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
What am I missing?

Edgar
Forum Crew
Posts: 2043
Joined: Thu Sep 03, 2009 9:13 pm
Operating System: Windows 10

Re: "Setup.h" not found

Post by Edgar » Sun Dec 04, 2011 10:19 pm

[edit 28Feb12--improved my compiling Audacity page for this subject:]
http://www.hometownband.org/Audacity/Co ... upNOTfound
I moved the main page into a sub-folder for ease of maintenance.

There are 2 places where setup.h can come from. Initially it is in wxWidgets-2.8.12includewxmsw and is called setup0.h the wxWidgets approved solution is to copy it (right in the folder where it resides) and rename the copy from setup0 - copy.h to setup.h. This preserves the original in case you mess up the working version.

The Audacity solution is to copy winwxWidgets_additionssetup.h to wxWidgets-2.8.12includewxmswsetup.h.

Sometimes you will still get errors like:

Code: Select all

fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
This is a bug/feature of the free version of MS C++ Express. If you get these errors post here with explicit details and I will help fix the problem. You can read all about this on the wxWidgets forum:
http://forums.wxwidgets.org/viewtopic.php?f=19&t=255
it is the first item on the FAQ.
Last edited by Edgar on Wed Feb 29, 2012 2:28 am, edited 2 times in total.

steve
Site Admin
Posts: 81609
Joined: Sat Dec 01, 2007 11:43 am
Operating System: Linux *buntu

Re: "Setup.h" not found

Post by steve » Sun Dec 04, 2011 11:37 pm

Edgar wrote:Initially it is in wxWidgets-2.8.12includewxmsw and is called setup0.h the wxWidgets approved solution is to copy it (right in the folder where it resides) and rename the copy from setup0 - copy.h to setup.h. This preserves the original in case you mess up the working version.
That's what I did (except that I added ".bak" to the back-up copy).
Edgar wrote:The Audacity solution is to copy winwxWidgets_additionssetup.h to wxWidgets-2.8.12includewxmswsetup.h.
setup.h in winwxWidgets_additions appears to be identical to setup0.h in wxWidgets-2.8.12includewxmsw
Edgar wrote:Sometimes you will still get errors like:
Yes I do, about 230 of them.
Edgar wrote:If you get these errors post here with explicit details and I will help fix the problem.
What explicit details (other than those already posted) do you need?
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)

Edgar
Forum Crew
Posts: 2043
Joined: Thu Sep 03, 2009 9:13 pm
Operating System: Windows 10

Re: "Setup.h" not found

Post by Edgar » Sun Dec 04, 2011 11:57 pm

steve wrote:
Edgar wrote:The Audacity solution is to copy winwxWidgets_additionssetup.h to wxWidgets-2.8.12includewxmswsetup.h.
setup.h in winwxWidgets_additions appears to be identical to setup0.h in wxWidgets-2.8.12includewxmsw
It is not quite identical; in two places a zero becomes a one. If you look at lines 1044-1050:

Code: Select all

// Use wxAccessible for enhanced and customisable accessibility.
// Depends on wxUSE_OLE.
//
// Default is 0.
//
// Recommended setting (at present): 0
#define wxUSE_ACCESSIBILITY 1 // Turn it on for Audacity.
and then lines 1110-1111:

Code: Select all

// Define 1 to use ODBC classes
#define wxUSE_ODBC          1 // Turn it on for Audacity.

Edgar
Forum Crew
Posts: 2043
Joined: Thu Sep 03, 2009 9:13 pm
Operating System: Windows 10

Re: "Setup.h" not found

Post by Edgar » Mon Dec 05, 2011 12:21 am

steve wrote:
Edgar wrote:Sometimes you will still get errors like:
Yes I do, about 230 of them.
Edgar wrote:If you get these errors post here with explicit details and I will help fix the problem.
What explicit details (other than those already posted) do you need?
First off, are we sure wxWidgets compiled successfully? Open WXWINlibvc_dll and make sure all the needed DLLs are there. You are talking about compiling Audacity here, right?
steve wrote: Added to environment variables:
Variable Name: WXWIN
Variable Value: C:wxWidgets­-2.8.12
Closed all three of the dialogs, close the control panel and rebooted.
This might be the culprit--you must click OK in all those windows, not close them.

Next make sure the system environmental variable WXWIN is set correctly. One way to tell is to run VC++ and open AudacityApp.cpp, look at line 26:

Code: Select all

#include <wx/defs.h>
right-click on "defs" -- a context menu will allow "Open Document..." -- try it--if it does not have the option or the header does not open the WXWIN variable is bad.

If these don't help you I will need you to copy the output window contents and send me the text. I will need to see the whole thing, not just a snippet with the error.

steve
Site Admin
Posts: 81609
Joined: Sat Dec 01, 2007 11:43 am
Operating System: Linux *buntu

Re: "Setup.h" not found

Post by steve » Mon Dec 05, 2011 1:12 am

Edgar wrote:This might be the culprit--you must click OK in all those windows, not close them.
Sorry, my bad. I "closed" them by clicking the "OK" button.
If I go back into the Environment Variables I have listed:
Variable: WXWIN
Value: C:wxWidgets­-2.8.12
Edgar wrote:First off, are we sure wxWidgets compiled successfully?
Yes as far as I know. The final output for each of "debug, Release, Unicode Release ...." said "0 Errors".
Edgar wrote:right-click on "defs" -- a context menu will allow "Open Document..." -- try it--if it does not have the option
Yes it opened
C:wxWidgets­-2.8.12includewxdefs.h
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)

steve
Site Admin
Posts: 81609
Joined: Sat Dec 01, 2007 11:43 am
Operating System: Linux *buntu

Re: "Setup.h" not found

Post by steve » Mon Dec 05, 2011 1:20 am

In case it helps, when I try to build Audacity, this is the output:

Code: Select all

------ Build started: Project: filedialog, Configuration: Unicode Release Win32 ------
Compiling...
cl : Command line warning D9035 : option 'Wp64' has been deprecated and will be removed in a future release
FileDialog.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
FileDialogPrivate.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Build log was saved at "file://c:Documents and SettingsSteveMy DocumentsaudacitywinProjectsfiledialogUnicode ReleaseBuildLog.htm"
filedialog - 2 error(s), 1 warning(s)
------ Build started: Project: libid3tag, Configuration: Unicode Release Win32 ------
Compiling...
util.c
......lib-srclibid3tagutil.c(29) : fatal error C1083: Cannot open include file: 'zlib.h': No such file or directory
Build log was saved at "file://c:Documents and SettingsSteveMy DocumentsaudacitywinProjectslibid3tagUnicode ReleaseBuildLog.htm"
libid3tag - 1 error(s), 0 warning(s)
------ Build started: Project: mod-script-pipe, Configuration: Unicode Release Win32 ------
Compiling...
ScripterCallback.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Build log was saved at "file://c:Documents and SettingsSteveMy DocumentsaudacitywinProjectsmod-script-pipeUnicode ReleaseBuildLog.htm"
mod-script-pipe - 1 error(s), 0 warning(s)
------ Build started: Project: help, Configuration: Unicode Release Win32 ------
Performing Pre-Build Event...
0 File(s) copied
Build log was saved at "file://c:Documents and SettingsSteveMy DocumentsaudacitywinProjectshelpUnicode ReleaseBuildLog.htm"
help - 0 error(s), 0 warning(s)
------ Build started: Project: locale, Configuration: Unicode Release Win32 ------
Compiling zh_TW locale
'msgfmt' is not recognized as an internal or external command,
operable program or batch file.
Project : error PRJ0019: A tool returned an error code from "Compiling zh_TW locale"
Build log was saved at "file://c:Documents and SettingsSteveMy DocumentsaudacitywinProjectslocaleUnicode ReleaseBuildLog.htm"
locale - 1 error(s), 0 warning(s)
------ Build started: Project: Audacity, Configuration: Unicode Release Win32 ------
Compiling...
ODWaveTrackTaskQueue.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ODTaskThread.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ODTask.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ODManager.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ODDecodeTask.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ODDecodeFlacTask.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ODDecodeFFmpegTask.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ODComputeSummaryTask.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
VampEffect.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
LoadVamp.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
TranscriptionToolBar.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ToolsToolBar.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ToolManager.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ToolDock.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ToolBar.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
SelectionBar.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
MixerToolBar.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
MeterToolBar.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
EditToolBar.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
DeviceToolBar.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Compiling...
ControlToolBar.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
LoadLadspa.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
LadspaEffect.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
SimpleBlockFile.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
SilentBlockFile.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
PCMAliasBlockFile.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ODPCMAliasBlockFile.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ODDecodeBlockFile.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
LegacyBlockFile.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
LegacyAliasBlockFile.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
SetTrackInfoCommand.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
SetProjectInfoCommand.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
SelectCommand.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ScriptCommandRelay.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ScreenshotCommand.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ResponseQueue.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
PreferenceCommands.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
MessageCommand.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Keyboard.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ImportExportCommands.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Compiling...
HelpCommand.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
GetTrackInfoCommand.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
GetProjectInfoCommand.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
GetAllMenuCommands.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ExecMenuCommand.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
CompareAudioCommand.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
CommandType.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
CommandSignature.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
CommandManager.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
CommandHandler.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
CommandDirectory.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
CommandBuilder.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Command.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
BatchEvalCommand.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
AppCommandEvent.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Nyquist.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
LoadNyquist.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
XMLWriter.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
XMLTagHandler.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
XMLFileReader.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Compiling...
Warning.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
TimeTextCtrl.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Ruler.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ProgressDialog.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
MultiDialog.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Meter.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
LinkingHtmlWindow.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ImageRoll.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
HtmlWindow.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Grid.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Grabber.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
FileHistory.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ExpandingToolBar.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ErrorDialog.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
AttachableScrollBar.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ASlider.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
AButton.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
WarningsPrefs.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
TracksPrefs.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ThemePrefs.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Compiling...
SpectrumPrefs.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
RecordingPrefs.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
QualityPrefs.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ProjectsPrefs.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
PrefsDialog.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
PlaybackPrefs.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
MousePrefs.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
LibraryPrefs.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
KeyConfigPrefs.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ImportExportPrefs.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
GUIPrefs.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ExtImportPrefs.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
EffectsPrefs.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
DirectoriesPrefs.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
DevicePrefs.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
BatchPrefs.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
RawAudioGuess.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ImportRaw.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ImportPCM.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ImportOGG.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Compiling...
ImportMP3.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ImportMIDI.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ImportLOF.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ImportFLAC.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ImportFFmpeg.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Import.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ExportPCM.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ExportOGG.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ExportMultiple.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ExportMP3.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ExportMP2.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ExportFLAC.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ExportFFmpegDialogs.cpp
c:documents and settingsstevemy documentsaudacitylib-srcffmpeglibavutilcommon.h(155) : warning C4244: 'return' : conversion from 'int64_t' to 'int32_t', possible loss of data
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ExportFFmpeg.cpp
c:documents and settingsstevemy documentsaudacitylib-srcffmpeglibavutilcommon.h(155) : warning C4244: 'return' : conversion from 'int64_t' to 'int32_t', possible loss of data
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ExportCL.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Export.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
VSTEffect.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Wahwah.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
TwoPassSimpleMono.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
TruncSilence.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Compiling...
ToneGen.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
TimeWarper.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
TimeScale.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
StereoToMono.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
SoundTouchEffect.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
SimpleMono.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Silence.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
SBSMSEffect.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Reverse.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Repeat.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Repair.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Phaser.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Normalize.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
NoiseRemoval.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Noise.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
LoadEffects.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Leveller.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Invert.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Generator.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
FindClipping.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Compiling...
Fade.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Equalization.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
EffectManager.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
EffectCategory.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Effect.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Echo.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
DtmfGen.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Contrast.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Compressor.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ClickRemoval.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ChangeTempo.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ChangeSpeed.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ChangePitch.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
BassBoost.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
AutoDuck.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Amplify.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
WrappedType.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
WaveTrack.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
WaveClip.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
VoiceKey.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Compiling...
UploadDialog.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
UndoManager.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
TrackPanelAx.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
TrackPanel.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
TrackArtist.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Track.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
TimeTrack.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
TimerRecordDialog.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
TimeDialog.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Theme.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Tags.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
SplashDialog.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Spectrum.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Snap.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ShuttlePrefs.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ShuttleGui.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Shuttle.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Sequence.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Screenshot.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
SampleFormat.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Compiling...
RingBuffer.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Resample.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Project.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Profiler.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Printing.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Prefs.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
PluginManager.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
PlatformCompatibility.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
PitchName.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
NoteTrack.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
NonGuiThread.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
MixerBoard.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Mix.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Menus.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Matrix.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
LyricsWindow.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Lyrics.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
LoadModules.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Legacy.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Languages.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Compiling...
LangChoice.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
LabelTrack.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
LabelDialog.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
InterpolateAudio.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Internat.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
ImageManipulation.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
HistoryWindow.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
HelpText.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
FreqWindow.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
FileNames.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
FileIO.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
FileFormats.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
FFT.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
FFmpeg.cpp
c:documents and settingsstevemy documentsaudacitylib-srcffmpeglibavutilcommon.h(155) : warning C4244: 'return' : conversion from 'int64_t' to 'int32_t', possible loss of data
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Envelope.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Dither.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
DirManager.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
DeviceManager.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Dependencies.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
BlockFile.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Compiling...
Benchmark.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
BatchProcessDialog.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
BatchCommands.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
BatchCommandDialog.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
AutoRecovery.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
AudioIO.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
AudacityHeaders.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
AudacityApp.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
AColor.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
AboutDialog.cpp
C:wxWidgets-2.8.12includewx/platform.h(196) : fatal error C1083: Cannot open include file: 'wx/setup.h': No such file or directory
Build log was saved at "file://c:Documents and SettingsSteveMy DocumentsaudacitywinProjectsAudacityUnicode ReleaseBuildLog.htm"
Audacity - 230 error(s), 3 warning(s)
========== Build: 1 succeeded, 5 failed, 18 up-to-date, 1 skipped ==========
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)

Edgar
Forum Crew
Posts: 2043
Joined: Thu Sep 03, 2009 9:13 pm
Operating System: Windows 10

Re: "Setup.h" not found

Post by Edgar » Mon Dec 05, 2011 1:59 am

Did you read that FAQ on the wxWidgets forum?

The text from the output window helps.

Start VC++ to compile Audacity and open lib-srcFileDialogFileDialog.h; look at line 24:
#include "wx/defs.h"
right-click for the context menu and open defs.h; look at line 21:
#include "wx/platform.h"
right-click for the context menu and open platform.h; look at line 196:
#include "wx/setup.h"
right-click for the context menu to open it--did it open?

If not use Windows' Window Explorer to open C:wxWidgets­-2.8.12includewxmsw and look for setup.h--is it there. If not put it there. If it is then we have a problem with include path VC++ is using. From what I understand, this is a trick MS uses to get you to buy the full version of MS Visual Studio. VC++ has a built-in set of include paths it uses, MS VS keeps adding to them but Express needs to be taught. Let me know if setup.h was there and if so I will step you through the process of teaching Express how to find things.

If it did open then let me know and we will go from there. The process will be similar to the previously mentioned process.

Oh, and just to make life miserable, VC++ can say it built with no errors and still fail. You must open the vc_dll folder and make sure all 5 of the Audacity required libraries were built.

steve
Site Admin
Posts: 81609
Joined: Sat Dec 01, 2007 11:43 am
Operating System: Linux *buntu

Re: "Setup.h" not found

Post by steve » Mon Dec 05, 2011 2:06 am

Edgar wrote:You must open the vc_dll folder and make sure all 5 of the Audacity required libraries were built.
Are these the required libraries that you mean?
steve wrote: wxbase28u_net_vc_custom.dll
wxbase28u_vc_custom.dll
wxmsw28u_adv_vc_custom.dll
wxmsw28u_core_vc_custom.dll
wxmsw28u_html_vc_custom.dll
If so, then yes they were built and I copied them to:
C:Documents and Settings<user name>My DocumentsaudacitywxLibsUnicode Release
before attempting to build Audacity.
Edgar wrote: Start VC++ to compile Audacity and open lib-srcFileDialogFileDialog.h; look at line 24:
#include "wx/defs.h"
right-click for the context menu and open defs.h; look at line 21:
#include "wx/platform.h"
right-click for the context menu and open platform.h; look at line 196:
#include "wx/setup.h"
right-click for the context menu to open it--did it open?
It's late now, I'll have to try this tomorrow if I get time.
Thanks for the support Edgar.
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)

Edgar
Forum Crew
Posts: 2043
Joined: Thu Sep 03, 2009 9:13 pm
Operating System: Windows 10

Re: "Setup.h" not found

Post by Edgar » Mon Dec 05, 2011 4:37 am

steve wrote: Are these the required libraries that you mean?
wxbase28u_net_vc_custom.dll
wxbase28u_vc_custom.dll
wxmsw28u_adv_vc_custom.dll
wxmsw28u_core_vc_custom.dll
wxmsw28u_html_vc_custom.dll
If so, then yes they were built and I copied them to:
C:Documents and Settings<user name>My DocumentsaudacitywxLibsUnicode Release
Yes, those look good, though you really want them in:

Code: Select all

C:Documents and Settings<user name>My DocumentswxLibsUnicode Release
(note: they will NOT be in the audacity folder). These are your "working" copies which you will copy into any newly checked out SVN HEAD's /win/ folder (and you will do so by copying the entire

Code: Select all

C:Documents and Settings<user name>My DocumentswxLibsUnicode Release

folder into

Code: Select all

C:Documents and Settings<user name>My Documentsaudacitywin
This will make more sense when you are building a Unicode Debug as well as Unicode Release version and way more sense if you build Debug and Release as well.
steve wrote: Thanks for the support Edgar.
As I recall you went to a lot of trouble to get me compiling on Linux so I guess no good deed goes unpunished <grin>, thanks!

Post Reply