Changeset 7177
- Timestamp:
- 02/27/08 16:06:30 (9 months ago)
- Files:
-
- trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk (modified) (4 diffs)
- trunk/src/VBox/Frontends/VirtualBox/include/VBoxIChatTheaterWrapper.h (added)
- trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp (modified) (2 diffs)
- trunk/src/VBox/Frontends/VirtualBox/src/VBoxFBQuartz2D.cpp (modified) (2 diffs)
- trunk/src/VBox/Frontends/VirtualBox/src/darwin/VBoxIChatTheaterWrapper.m (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r6676 r7177 130 130 # For the launch trick we need different inode numbers. 131 131 VirtualBox_INST = $(INST_BIN)VirtualBox $(INST_BIN)VirtualBoxVM 132 133 # For testing iChat Theater stuff change 134 # the sdk path 135 ifdef VBOX_WITH_ICHAT_THEATER 136 VBOX_PATH_MACOSX_SDK = /Developer/SDKs/MacOSX10.5.sdk 137 endif 138 132 139 endif 133 140 … … 254 261 src/VBoxFBQuartz2D.cpp 255 262 263 ifdef VBOX_WITH_ICHAT_THEATER 264 VirtualBox_SOURCES.darwin += \ 265 src/darwin/VBoxIChatTheaterWrapper.m 266 endif 267 256 268 ifneq ($(BUILD_TARGET),win) 257 269 src/HappyHttp.cpp_CXXFLAGS += -fexceptions … … 282 294 VirtualBox_DEFS.darwin += VBOX_WITH_HACKED_QT 283 295 #endif 296 ifdef VBOX_WITH_ICHAT_THEATER 297 VirtualBox_DEFS.darwin += VBOX_WITH_ICHAT_THEATER 298 endif 284 299 ifneq ($(BUILD_TYPE),release) 285 300 # non-release builds has some extra features. … … 326 341 VirtualBox_LDFLAGS.os2 = -Zlinker /PM:PM -Zno-fork 327 342 VirtualBox_LDFLAGS.darwin = -framework IOKit 343 ifdef VBOX_WITH_ICHAT_THEATER 344 VirtualBox_LDFLAGS.darwin += -framework Foundation -framework AppKit -framework InstantMessage -framework QuartzCore 345 endif 328 346 VirtualBox_LIBS.win = \ 329 347 $(PATH_SDK_WINPSDK_LIB)/Htmlhelp.Lib \ trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r6825 r7177 47 47 #include <X11/Xlib.h> 48 48 #include <XKeyboard.h> 49 #endif 50 51 #ifdef Q_WS_MAC 52 #include "VBoxIChatTheaterWrapper.h" 49 53 #endif 50 54 … … 580 584 581 585 #ifdef Q_WS_MAC 586 # ifdef VBOX_WITH_ICHAT_THEATER 587 initSharedAVManager(); 588 # endif 582 589 /* prepare the dock images */ 583 590 dockImgStatePaused = ::DarwinCreateDockBadge ("state_paused_16px.png"); trunk/src/VBox/Frontends/VirtualBox/src/VBoxFBQuartz2D.cpp
r6797 r7177 25 25 /* Needed for checking against seamless mode */ 26 26 #include "VBoxConsoleWnd.h" 27 #include "VBoxIChatTheaterWrapper.h" 27 28 28 29 /* Qt includes */ … … 325 326 } 326 327 CGColorSpaceRelease (cs); 328 #ifdef VBOX_WITH_ICHAT_THEATER 329 setImageRef (mImage); 330 #endif 327 331 328 332 // if (remind)

