From 6721a5191ae1904f4457904cb60922e4a4ebc971 Mon Sep 17 00:00:00 2001 From: Reinhard Prix Date: Mon, 30 Jan 2006 13:19:32 +0000 Subject: [PATCH] - update boincmgr build for MacOSX: add Mac_GUI.cpp, MacGUI.pch and Security.framework svn path=/trunk/boinc/; revision=9344 --- clientgui/MainFrame.cpp | 4 ++++ clientgui/Makefile.am | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/clientgui/MainFrame.cpp b/clientgui/MainFrame.cpp index 625af0fedc..8931e1ceab 100644 --- a/clientgui/MainFrame.cpp +++ b/clientgui/MainFrame.cpp @@ -21,6 +21,10 @@ #pragma implementation "MainFrame.h" #endif +#ifdef __APPLE__ +#include "mac/MacGUI.pch" +#endif + #include "stdwx.h" #include "hyperlink.h" #include "network.h" diff --git a/clientgui/Makefile.am b/clientgui/Makefile.am index 474d6e77db..4555afb500 100644 --- a/clientgui/Makefile.am +++ b/clientgui/Makefile.am @@ -7,11 +7,13 @@ LIBS += @CLIENTLIBS@ if OS_DARWIN - LIBS += -framework IOKit -framework Foundation -framework ScreenSaver -framework Cocoa + LIBS += -framework IOKit -framework Foundation -framework ScreenSaver -framework Cocoa -framework Security mac_sources = mac/SystemMenu.m \ mac/mac_saver_module.cpp \ mac/Mac_Saver_ModuleView.m \ - mac/MacSysMenu.cpp + mac/MacSysMenu.cpp \ + mac/Mac_GUI.cpp + mac_headers = mac/*.h else mac_headers =