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

« back to all changes in this revision

Viewing changes to unix/xc/programs/Xserver/hw/xfree86/drivers/i740/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/drivers/i740/Imakefile,v 1.10 2003/02/17 17:06:42 dawes Exp $
 
2
XCOMM
 
3
XCOMM This is the Imakefile for the i740 driver.  
 
4
XCOMM 
 
5
 
 
6
#define IHaveModules
 
7
#include <Server.tmpl>
 
8
 
 
9
SRCS = i740_driver.c i740_cursor.c i740_accel.c i740_io.c i740_dga.c i740_i2c.c i740_video.c
 
10
 
 
11
OBJS = i740_driver.o i740_cursor.o i740_accel.o i740_io.o i740_dga.o i740_i2c.o i740_video.o
 
12
 
 
13
#if defined(XF86DriverSDK)
 
14
INCLUDES = -I. -I../../include
 
15
#else
 
16
INCLUDES = -I. -I$(XF86COMSRC) -I$(XF86OSSRC) \
 
17
           -I$(SERVERSRC)/mfb -I$(SERVERSRC)/mi \
 
18
           -I$(XF86SRC)/xaa -I$(XF86SRC)/rac \
 
19
           -I$(SERVERSRC)/cfb -I$(XF86SRC)/xaa -I$(XF86SRC)/ramdac \
 
20
           -I$(XF86SRC)/vgahw -I$(XF86SRC)/ddc -I$(XF86SRC)/i2c \
 
21
           -I$(SERVERSRC)/Xext -I$(XF86SRC)/vbe -I$(SERVERSRC)/fb\
 
22
           -I$(FONTINCSRC) -I$(SERVERSRC)/include -I$(XINCLUDESRC) \
 
23
           -I$(EXTINCSRC) -I$(XF86SRC)/int10 -I$(SERVERSRC)/render
 
24
#endif
 
25
 
 
26
#if MakeHasPosixVariableSubstitutions
 
27
SubdirLibraryRule($(OBJS))
 
28
#endif
 
29
 
 
30
ModuleObjectRule()
 
31
 
 
32
ObjectModuleTarget(i740,$(OBJS))
 
33
 
 
34
InstallObjectModule(i740,$(MODULEDIR),drivers)
 
35
 
 
36
#if !defined(XF86DriverSDK)
 
37
InstallModuleManPage(i740)
 
38
#endif
 
39
 
 
40
DependTarget()
 
41
 
 
42
InstallDriverSDKNonExecFile(Imakefile,$(DRIVERSDKDIR)/drivers/i740)
 
43
InstallDriverSDKNonExecFile(i740.h,$(DRIVERSDKDIR)/drivers/i740)
 
44
InstallDriverSDKNonExecFile(i740_accel.c,$(DRIVERSDKDIR)/drivers/i740)
 
45
InstallDriverSDKNonExecFile(i740_cursor.c,$(DRIVERSDKDIR)/drivers/i740)
 
46
InstallDriverSDKNonExecFile(i740_driver.c,$(DRIVERSDKDIR)/drivers/i740)
 
47
InstallDriverSDKNonExecFile(i740_io.c,$(DRIVERSDKDIR)/drivers/i740)
 
48
InstallDriverSDKNonExecFile(i740_macros.h,$(DRIVERSDKDIR)/drivers/i740)
 
49
InstallDriverSDKNonExecFile(i740_reg.h,$(DRIVERSDKDIR)/drivers/i740)
 
50
 
 
51
InstallDriverSDKObjectModule(i740,$(DRIVERSDKMODULEDIR),drivers)
 
52