~ubuntu-branches/ubuntu/gutsy/vnc4/gutsy

« back to all changes in this revision

Viewing changes to unix/xc/programs/Xserver/hw/xfree86/os-support/bsd/drm/Imakefile

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2006-05-15 20:35:17 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060515203517-l4lre1ku942mn26k
Tags: 4.1.1+X4.3.0-10
* Correction of critical security issue. Thanks to Martin Kogler
  <e9925248@student.tuwien.ac.at> that informed me about the issue,
  and provided the patch.
  This flaw was originally found by Steve Wiseman of intelliadmin.com.
* Applied patch from Javier Kohen <jkohen@users.sourceforge.net> that
  inform the user that only 8 first characters of the password will
  actually be used when typing more than 8 characters, closes:
  #355619.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
XCOMM $XFree86: xc/programs/Xserver/hw/xfree86/os-support/bsd/drm/Imakefile,v 1.12 2002/10/30 12:52:24 alanh Exp $
 
2
XCOMM $PI: xc/programs/Xserver/hw/xfree86/os-support/linux/drm/Imakefile,v 1.7 1999/09/14 19:55:15 faith Exp $
 
3
 
 
4
#define IHaveModules
 
5
#include <Server.tmpl>
 
6
 
 
7
#if DoLoadableServer
 
8
MSRC = drmmodule.c
 
9
MOBJ = drmmodule.o
 
10
#endif
 
11
 
 
12
#if BuildXF86DRI
 
13
#if HasMTRRSupport
 
14
MTRR_DEFINES = -DHAS_MTRR_SUPPORT
 
15
#endif
 
16
 
 
17
 SRCS = xf86drm.c \
 
18
        xf86drmHash.c \
 
19
        xf86drmRandom.c \
 
20
        xf86drmSL.c \
 
21
        xf86drmCompat.c \
 
22
        $(MSRC)
 
23
 
 
24
 OBJS = xf86drm.o \
 
25
        xf86drmHash.o \
 
26
        xf86drmRandom.o \
 
27
        xf86drmSL.o \
 
28
        xf86drmCompat.o \
 
29
        $(MOBJ)
 
30
 
 
31
INCLUDES = -I$(XF86COMSRC) -I$(XF86OSSRC) -I. -I$(SERVERSRC)/include \
 
32
           -I$(XINCLUDESRC) -I$(EXTINCSRC) -I../.. -Ikernel
 
33
 
 
34
DEFINES = $(MTRR_DEFINES) $(GLX_DEFINES)
 
35
 
 
36
ModuleObjectRule()
 
37
LibraryModuleTarget(drm,$(OBJS))
 
38
NormalLintTarget($(SRCS))
 
39
 
 
40
InstallLibraryModule(drm,$(MODULEDIR),freebsd)
 
41
 
 
42
#define IHaveSubdirs
 
43
SUBDIRS = kernel
 
44
 
 
45
MakeSubdirs($(SUBDIRS))
 
46
DependSubdirs($(SUBDIRS))
 
47
#endif
 
48
 
 
49
DependTarget()
 
50
 
 
51
 
 
52
#if DoLoadableServer
 
53
LinkSourceFile(drmmodule.c,$(XF86OSSRC)/linux/drm)
 
54
#endif
 
55
LinkSourceFile(xf86drm.c,$(XF86OSSRC)/linux/drm)
 
56
LinkSourceFile(xf86drmHash.c,$(XF86OSSRC)/linux/drm)
 
57
LinkSourceFile(xf86drmRandom.c,$(XF86OSSRC)/linux/drm)
 
58
LinkSourceFile(xf86drmSL.c,$(XF86OSSRC)/linux/drm)
 
59
LinkSourceFile(xf86drmCompat.c,$(XF86OSSRC)/linux/drm)
 
60
 
 
61
InstallDriverSDKLibraryModule(drm,$(DRIVERSDKMODULEDIR),freebsd)