VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/xclient/Makefile.kmk@ 7539

Last change on this file since 7539 was 7517, checked in by vboxsync, 17 years ago

Additions/FreeBSD: initial commit

Mostly tested on FreeBSD 7.0.

Working: the additions kernel module

VBoxService (working on FreeBSD 6.2 too)
vboxvideo

Partially working: vboxmouse - 100% CPU usage and clicking does not work yet
Not tested: xclient
TODO: shared folder module is currently a stub

Installer and startup scripts

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.8 KB
Line 
1# $Id: Makefile.kmk 7517 2008-03-22 23:15:44Z vboxsync $
2## @file
3# Sub-Makefile for the VirtualBox Guest Addition X11 Client.
4#
5
6#
7# Copyright (C) 2006-2007 innotek GmbH
8#
9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.virtualbox.org. This file is free software;
11# you can redistribute it and/or modify it under the terms of the GNU
12# General Public License (GPL) as published by the Free Software
13# Foundation, in version 2 as it comes in the "COPYING" file of the
14# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17
18DEPTH ?= ../../../../..
19SUB_DEPTH = ../..
20include $(PATH_KBUILD)/subheader.kmk
21
22#
23# VBoxClient - clipboard and seamless.
24#
25PROGRAMS += VBoxClient
26
27VBoxClient_TEMPLATE = VBOXGUESTR3CPPEXE
28VBoxClient_DEFS += VBOX_X11_CLIPBOARD VBOX_HGCM
29VBoxClient_DEFS.linux += _GNU_SOURCE
30VBoxClient_SOURCES = \
31 main.cpp
32VBoxClient_SOURCES += \
33 clipboard.cpp
34VBoxClient_LIBPATH = \
35 $(VBOX_LIBPATH32_X11)
36VBoxClient_LIBS = \
37 $(VBOX_LIB_IPRT_GUEST_R3) \
38 $(VBOX_LIB_VBGL_R3) \
39 $(VBOX_LIB_IPRT_GUEST_R3) \
40 X11 \
41 Xt
42VBoxClient_LIBPATH.freebsd += \
43 /usr/local/lib
44VBoxClient_LIBS.freebsd += \
45 iconv
46ifdef VBOX_X11_SEAMLESS_GUEST
47 VBoxClient_DEFS += SEAMLESS_GUEST DYNAMIC_RESIZE
48 VBoxClient_SOURCES += \
49 seamless-host.cpp \
50 seamless-x11.cpp \
51 thread.cpp \
52 displaychange-x11.cpp
53 VBoxClient_LIBS += \
54 Xext Xmu
55endif
56
57#
58# Link aginst libstdc++.a. (http://www.trilithium.com/johan/2005/06/static-libstdc/).
59# (It would've been preferred to avoid features depending on libstdc++, of course...)
60#
61VBoxClient_LIBPATH += $(PATH_TARGET)/VBoxClient
62VBoxClient_ORDERDEPS = $(PATH_TARGET)/VBoxClient/libstdc++.a
63VBoxClient_CLEAN = $(PATH_TARGET)/VBoxClient/libstdc++.a
64$(PATH_TARGET)/VBoxClient/libstdc++.a:
65 $(call MSG_L1,Forcing static libstdc++)
66 $(QUIET)$(MKDIR) -p $(@D)
67 $(QUIET)$(LN_EXT) -sf `$(TOOL_$(VBOX_GCC32_TOOL)_CXX) -print-file-name=libstdc++.a` $@ \
68 || $(CP_EXT) -f `$(TOOL_$(VBOX_GCC32_TOOL)_CXX) -print-file-name=libstdc++.a` $@
69
70
71ifdef VBOX_X11_SEAMLESS_GUEST
72 ifdef VBOX_WITH_TESTCASES
73 ifndef VBOX_ONLY_ADDITIONS
74 #
75 # Additional testcase designed to be run manually, which initiates and starts the Linux
76 # guest client part of the seamless additions in the host, faking seamless events from
77 # the host and writing information about guest events to standard output.
78 #
79 PROGRAMS += tstSeamlessX11
80 tstSeamlessX11_TEMPLATE = VBOXR3TSTEXE
81 tstSeamlessX11_SOURCES = \
82 testcase/tstSeamlessX11.cpp \
83 seamless-host.cpp \
84 seamless-x11.cpp \
85 thread.cpp
86 tstSeamlessX11_LIBPATH = \
87 $(VBOX_LIBPATH_X11)
88 tstSeamlessX11_LIBS = \
89 $(LIB_RUNTIME) \
90 Xext \
91 Xmu \
92 X11
93 endif
94 endif
95endif
96
97include $(PATH_KBUILD)/subfooter.kmk
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette