From 24569aca3dc54755c3bc37da6546688b32268a78 Mon Sep 17 00:00:00 2001 From: Glenn Rice Date: Sat, 11 Dec 2010 01:09:28 +0000 Subject: [PATCH] Fix a linkage issue on newer linux distributions created in revision 6544. Also update the menu link to dolphin-emulator.com git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6553 8ced0084-cf51-0410-be5f-012b33b47a6e --- CMakeLists.txt | 2 +- Source/Core/DolphinWX/Src/FrameTools.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1adcd3502f..5fced5f0ab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -319,7 +319,7 @@ endif() option(DISABLE_WX "Disable wxWidgets (use CLI interface)" OFF) if(NOT DISABLE_WX) include(FindwxWidgets OPTIONAL) - FIND_PACKAGE(wxWidgets COMPONENTS aui) + FIND_PACKAGE(wxWidgets COMPONENTS core aui adv) if(wxWidgets_FOUND) include(${wxWidgets_USE_FILE}) diff --git a/Source/Core/DolphinWX/Src/FrameTools.cpp b/Source/Core/DolphinWX/Src/FrameTools.cpp index aeb96259de..229ac7df70 100644 --- a/Source/Core/DolphinWX/Src/FrameTools.cpp +++ b/Source/Core/DolphinWX/Src/FrameTools.cpp @@ -1093,7 +1093,7 @@ void CFrame::OnHelp(wxCommandEvent& event) } break; case IDM_HELPWEBSITE: - WxUtils::Launch("http://www.dolphin-emu.com/"); + WxUtils::Launch("http://www.dolphin-emulator.com/"); break; case IDM_HELPGOOGLECODE: WxUtils::Launch("http://code.google.com/p/dolphin-emu/");