Misc Linux build fixes in the wake of r1887; still doesn't work right
because Source/Plugins/Plugin_DSP_HLE/Src/Debugger/Logging.cpp appears to be missing, and I haven't looked at the fallout of r1884 yet. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1897 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
60c48278d8
commit
0099b5c957
|
@ -6,6 +6,7 @@ files = [
|
||||||
"ABI.cpp",
|
"ABI.cpp",
|
||||||
"MsgHandler.cpp",
|
"MsgHandler.cpp",
|
||||||
"ChunkFile.cpp",
|
"ChunkFile.cpp",
|
||||||
|
"ConsoleWindow.cpp",
|
||||||
"CPUDetect.cpp",
|
"CPUDetect.cpp",
|
||||||
"DynamicLibrary.cpp",
|
"DynamicLibrary.cpp",
|
||||||
"Hash.cpp",
|
"Hash.cpp",
|
||||||
|
|
|
@ -36,7 +36,7 @@ if dspenv['HAVE_WX']:
|
||||||
'Debugger/PBView.cpp',
|
'Debugger/PBView.cpp',
|
||||||
'Debugger/Mails.cpp',
|
'Debugger/Mails.cpp',
|
||||||
'Debugger/Blocks.cpp',
|
'Debugger/Blocks.cpp',
|
||||||
'Logging/Logging.cpp',
|
'Debugger/Logging.cpp',
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,6 @@ files = [
|
||||||
# "stdafx.cpp",
|
# "stdafx.cpp",
|
||||||
"Tools.cpp",
|
"Tools.cpp",
|
||||||
"Logging/AXTask.cpp",
|
"Logging/AXTask.cpp",
|
||||||
"Logging/Console.cpp",
|
|
||||||
"Logging/Logging.cpp",
|
"Logging/Logging.cpp",
|
||||||
"Logging/ReadPBs.cpp",
|
"Logging/ReadPBs.cpp",
|
||||||
]
|
]
|
||||||
|
|
|
@ -54,6 +54,15 @@ void CloseConsole()
|
||||||
{
|
{
|
||||||
Console::Close();
|
Console::Close();
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
// Dummy functions for console open/close
|
||||||
|
void OpenConsole()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void CloseConsole()
|
||||||
|
{
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
//////////////////////////////////
|
//////////////////////////////////
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue