Changeset 6459 in vbox for trunk/src/VBox/Additions/x11/xclient
- Timestamp:
- Jan 23, 2008 6:30:01 AM (17 years ago)
- Location:
- trunk/src/VBox/Additions/x11/xclient
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/xclient/Makefile.kmk
r6356 r6459 30 30 vboxadd-xclient_DEFS += VBOX_X11_CLIPBOARD 31 31 32 ifdef LINUX_SEAMLESS_GUEST32 ifdef VBOX_X11_SEAMLESS_GUEST 33 33 vboxadd-xclient_SOURCES += \ 34 34 seamless-host.cpp \ … … 49 49 vboxadd-xclient_DEFS += _GNU_SOURCE VBOX_HGCM 50 50 51 ifdef LINUX_SEAMLESS_GUEST52 vboxadd-xclient_DEFS += SEAMLESS_ LINUX51 ifdef VBOX_X11_SEAMLESS_GUEST 52 vboxadd-xclient_DEFS += SEAMLESS_X11 53 53 endif 54 54 … … 60 60 $(QUIET)ln -sf `$(TOOL_$(VBOX_GCC32_TOOL)_CXX) -print-file-name=libstdc++.a` $@ || cp `$(TOOL_$(VBOX_GCC32_TOOL)_CXX) -print-file-name=libstdc++.a` $@ 61 61 62 ifdef LINUX_SEAMLESS_GUEST62 ifdef VBOX_X11_SEAMLESS_GUEST 63 63 ifdef VBOX_WITH_TESTCASES 64 64 # Additional testcase designed to be run manually, which initiates and starts the Linux -
trunk/src/VBox/Additions/x11/xclient/main.cpp
r6445 r6459 35 35 #include "clipboard.h" 36 36 37 #ifdef SEAMLESS_ LINUX37 #ifdef SEAMLESS_X11 38 38 # include "seamless.h" 39 39 #endif … … 73 73 { 74 74 int rc; 75 #ifdef SEAMLESS_ LINUX75 #ifdef SEAMLESS_X11 76 76 /** Our instance of the seamless class. */ 77 77 VBoxGuestSeamless seamless; … … 144 144 } 145 145 #endif /* VBOX_X11_CLIPBOARD defined */ 146 #ifdef SEAMLESS_ LINUX146 #ifdef SEAMLESS_X11 147 147 try 148 148 { … … 164 164 rc = VERR_UNRESOLVED_ERROR; 165 165 } 166 #endif /* SEAMLESS_ LINUXdefined */166 #endif /* SEAMLESS_X11 defined */ 167 167 #ifdef VBOX_X11_CLIPBOARD 168 168 LogRel(("VBoxService: connecting to the shared clipboard service.\n")); … … 174 174 LogRel(("VBoxService: exiting...\n")); 175 175 #endif /* VBOX_X11_CLIPBOARD not defined */ 176 #ifdef SEAMLESS_ LINUX176 #ifdef SEAMLESS_X11 177 177 try 178 178 { … … 189 189 rc = VERR_UNRESOLVED_ERROR; 190 190 } 191 #endif /* SEAMLESS_ LINUXdefined */191 #endif /* SEAMLESS_X11 defined */ 192 192 return rc; 193 193 }
Note:
See TracChangeset
for help on using the changeset viewer.