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

« back to all changes in this revision

Viewing changes to unix/xc/programs/Xserver/hw/xfree86/parser/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
/* $XFree86: xc/programs/Xserver/hw/xfree86/parser/Imakefile,v 1.13 2002/05/31 18:46:02 dawes Exp $ */
 
2
 
 
3
 
 
4
 
 
5
#define DoNormalLib     YES
 
6
#define DoSharedLib     NO
 
7
#define DoDebugLib      NO
 
8
#define DoProfileLib    NO
 
9
#define HasSharedData   NO
 
10
#define LibName         xf86config
 
11
 
 
12
#define UseDBMalloc     NO
 
13
 
 
14
#if UseDBMalloc
 
15
SYS_LIBRARIES=-ldbmalloc
 
16
DBMALLOCDEFINE=-DDBMALLOC
 
17
#endif
 
18
 
 
19
SYS_LIBRARIES = MathLibrary
 
20
 
 
21
XCONFIGFILE = XConfigFile
 
22
XCONFIGDIR = XConfigDir
 
23
XVERS = XFree86Version
 
24
 
 
25
INCLUDES = -I. -I$(XF86OSSRC)
 
26
 
 
27
HEADERS = xf86Parser.h xf86Optrec.h
 
28
 
 
29
SRCS = Device.c Files.c Flags.c Input.c Keyboard.c Layout.c Module.c \
 
30
        Video.c Monitor.c Pointer.c Screen.c Vendor.c read.c scan.c write.c
 
31
OBJS = Device.o Files.o Flags.o Input.o Keyboard.o Layout.o Module.o \
 
32
        Video.o Monitor.o Pointer.o Screen.o Vendor.o read.o scan.o write.o \
 
33
        DRI.o
 
34
 
 
35
CONFIG_DEFINES = -DXCONFIGDIR=\"$(XCONFIGDIR)\" \
 
36
                 -DXCONFIGFILE=\"$(XCONFIGFILE)\" \
 
37
                 -DXVERSION="$(XVERS)"
 
38
 
 
39
#include <Library.tmpl>
 
40
 
 
41
SpecialCObjectRule(scan,NullParameter,$(CONFIG_DEFINES) $(MODULEDEFINES) $(EXT_DEFINES))
 
42
 
 
43
NormalProgramTarget(cpconfig,cpconfig.o $(OBJS),NullParameter,$(LOCAL_LIBRARIES),NullParameter)
 
44
 
 
45
AllTarget(ProgramTargetName(cpconfig))
 
46
DependTarget()