~ubuntu-branches/ubuntu/vivid/virtualbox-ose/vivid

« back to all changes in this revision

Viewing changes to src/VBox/Additions/x11/vboxmouse/Imakefile

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2010-03-11 17:16:37 UTC
  • mfrom: (0.3.4 upstream) (0.4.8 sid)
  • Revision ID: james.westby@ubuntu.com-20100311171637-43z64ia3ccpj8vqn
Tags: 3.1.4-dfsg-2ubuntu1
* Merge from Debian unstable (LP: #528561), remaining changes:
  - VirtualBox should go in Accessories, not in System tools (LP: #288590)
    - debian/virtualbox-ose-qt.files/virtualbox-ose.desktop
  - Add Apport hook
    - debian/virtualbox-ose.files/source_virtualbox-ose.py
    - debian/virtualbox-ose.install
  - Add Launchpad integration
    - debian/control
    - debian/lpi-bug.xpm
    - debian/patches/u02-lp-integration.dpatch
  - Replace *-source packages with transitional packages for *-dkms
* Fix crash in vboxvideo_drm with kernel 2.6.33 / backported drm code
  (LP: #535297)
* Add a list of linux-headers packages to the apport hook
* Update debian/patches/u02-lp-integration.dpatch with a
  DEP-3 compliant header
* Add ${misc:Depends} to virtualbox-ose-source and virtualbox-ose-guest-source
  Depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
XCOMM
2
 
XCOMM Imakefile for the VBox Linux Additions X.org mouse driver.
3
 
XCOMM (Only needed if this module is compiled as part of monolithic Xorg)
4
 
XCOMM
5
 
XCOMM
6
 
XCOMM  Copyright (C) 2006-2007 Sun Microsystems, Inc.
7
 
XCOMM
8
 
XCOMM  This file is part of VirtualBox Open Source Edition (OSE), as
9
 
XCOMM  available from http://www.virtualbox.org. This file is free software;
10
 
XCOMM  you can redistribute it and/or modify it under the terms of the GNU
11
 
XCOMM  General Public License (GPL) as published by the Free Software
12
 
XCOMM  Foundation, in version 2 as it comes in the "COPYING" file of the
13
 
XCOMM  VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14
 
XCOMM  hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15
 
XCOMM
16
 
XCOMM  Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
17
 
XCOMM  Clara, CA 95054 USA or visit http://www.sun.com if you need
18
 
XCOMM  additional information or have any questions.
19
 
XCOMM
20
 
 
21
 
#define IHaveModules
22
 
#include <Server.tmpl>
23
 
 
24
 
SRCS = mouse.c pnp.c VBoxUtils.c
25
 
OBJS = mouse.o pnp.o VBoxUtils.o
26
 
 
27
 
DRIVER = vboxmouse
28
 
 
29
 
INCLUDES = -I. -I$(XF86COMSRC) -I$(XF86SRC)/loader -I$(XF86OSSRC) \
30
 
        -I$(SERVERSRC)/mi -I$(SERVERSRC)/include -I$(XINCLUDESRC) \
31
 
        -I$(EXTINCSRC)
32
 
 
33
 
DEFINES = -DPNP_MOUSE -DIN_RING3 -DVBOX
34
 
CCOPTIONS += -fno-merge-constants
35
 
 
36
 
#if MakeHasPosixVariableSubstitutions
37
 
SubdirLibraryRule($(OBJS))
38
 
#endif
39
 
 
40
 
ModuleObjectRule()
41
 
 
42
 
ObjectModuleTarget($(DRIVER),$(OBJS))
43
 
 
44
 
InstallInputObjectModule($(DRIVER),$(MODULEDIR))
45
 
 
46
 
DependTarget()
47
 
 
48
 
InstallDriverSDKObjectModule($(DRIVER),$(DRIVERSDKMODULEDIR),input)