- Timestamp:
- May 10, 2011 11:31:36 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 71640
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r37018 r37025 4251 4251 # 4252 4252 # Template for building R3 programs for the guest additions. 4253 # Note: Make sure you don't break VBOXGUESTR3CPPEXE when changing this.4254 4253 # 4255 4254 TEMPLATE_VBOXGUESTR3EXE = VBox Guest Program … … 4408 4407 iconv 4409 4408 4410 #4411 # Template for guest stuff that makes use of the C++ library and features.4412 # (This is mostly about undoing what was done to C++ for VBOXGUESTR3EXE.)4413 #4414 TEMPLATE_VBOXGUESTR3CPPEXE = VBox Guest Program with C++ library dependencies4415 TEMPLATE_VBOXGUESTR3CPPEXE_EXTENDS = VBOXGUESTR3EXE4416 ifeq ($(KBUILD_TARGET),win)4417 # later if necessary4418 else4419 TEMPLATE_VBOXGUESTR3CPPEXE_TOOL = $(TEMPLATE_VBOXR3EXE_TOOL)4420 TEMPLATE_VBOXGUESTR3CPPEXE_CXXFLAGS = $(TEMPLATE_VBOXR3EXE_CXXFLAGS)4421 endif4422 4423 4409 4424 4410 # -
trunk/src/VBox/Additions/x11/VBoxClient/Makefile.kmk
r36810 r37025 24 24 PROGRAMS += VBoxClient 25 25 26 VBoxClient_TEMPLATE = VBOXGUESTR3 CPPEXE26 VBoxClient_TEMPLATE = VBOXGUESTR3EXE 27 27 VBoxClient_DEFS += VBOX_X11_CLIPBOARD VBOX_WITH_HGCM 28 28 ifdef VBOX_WITH_DBUS -
trunk/src/VBox/Additions/x11/VBoxClient/clipboard.h
r28800 r37025 119 119 LogRelFlowFunc(("\n")); 120 120 if (mInit) 121 try { 122 uninit(2000); 123 } catch (...) { } 121 uninit(2000); 124 122 LogRelFlowFunc(("returning\n")); 125 123 } -
trunk/src/VBox/Additions/x11/VBoxClient/seamless-host.h
r36806 r37025 165 165 { 166 166 LogRel(("VBoxClient: seamless host object still running! Stopping...\n")); 167 try 168 { 169 stop(2000); 170 } 171 catch(...) {} 167 stop(2000); 172 168 } 173 169 LogRelFlowFunc(("returning\n")); -
trunk/src/VBox/Additions/x11/VBoxClient/seamless-x11.h
r36806 r37025 246 246 ~VBoxGuestSeamlessX11() 247 247 { 248 try 249 { 250 uninit(); 251 } 252 catch(...) {} 248 uninit(); 253 249 if (mDisplay) 254 250 XCloseDisplay(mDisplay); -
trunk/src/VBox/Additions/x11/VBoxClient/thread.cpp
r36807 r37025 56 56 { 57 57 LogRelThisFunc(("Warning! Stopping thread %s, as it is still running!\n", mName)); 58 try 59 { 60 stop(2000, 0); 61 } 62 catch(...) {} 58 stop(2000, 0); 63 59 } 64 60 LogRelFlowFunc(("returning\n"));
Note:
See TracChangeset
for help on using the changeset viewer.