Changeset 4861 in vbox
- Timestamp:
- Sep 17, 2007 3:48:39 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 24580
- Location:
- trunk/src/VBox/Frontends/VBoxBFE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/Makefile.kmk
r4669 r4861 40 40 VBoxBFE_DEFS += VBOX_WITHOUT_LINUX_COMPILER_H 41 41 endif 42 VBoxBFE_DEFS.freebsd = VBOXBFE_WITH_X11 42 43 VBoxBFE_DEFS.l4 = _GNU_SOURCE 43 44 VBoxBFE_DEFS.linux = _GNU_SOURCE VBOXBFE_WITH_X11 45 VBoxBFE_DEFS.solaris = VBOXBFE_WITH_X11 VBOXBFE_WITHOUT_XCURSOR 44 46 VBoxBFE_DEFS.win.x86 = _WIN32_WINNT=0x0500 45 47 … … 81 83 SDLFramebuffer.cpp 82 84 VBoxBFE_SOURCES.solaris = \ 83 84 85 SDLConsole.cpp \ 86 SDLFramebuffer.cpp 85 87 86 88 VBoxBFE_INCS = \ -
trunk/src/VBox/Frontends/VBoxBFE/SDLConsole.cpp
r4700 r4861 49 49 #ifdef VBOXBFE_WITH_X11 50 50 # include <X11/Xlib.h> 51 # include <X11/Xcursor/Xcursor.h> 51 # ifndef VBOXBFE_WITHOUT_XCURSOR 52 # include <X11/Xcursor/Xcursor.h> 53 # endif 52 54 #endif 53 55 … … 1394 1396 ::DeleteObject (hBitmap); 1395 1397 1396 #elif defined(VBOXBFE_WITH_X11) 1398 #elif defined(VBOXBFE_WITH_X11) && !defined(VBOXBFE_WITHOUT_XCURSOR) 1397 1399 1398 1400 XcursorImage *img = XcursorImageCreate (data->width, data->height);
Note:
See TracChangeset
for help on using the changeset viewer.