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

« back to all changes in this revision

Viewing changes to unix/xc/programs/Xserver/hw/xfree86/os-support/sysv/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/sysv/Imakefile,v 3.25 2002/10/17 02:22:50 dawes Exp $
 
2
 
 
3
 
 
4
 
 
5
 
 
6
 
 
7
XCOMM $XConsortium: Imakefile /main/10 1996/10/25 11:38:05 kaleb $
 
8
 
 
9
#include <Server.tmpl>
 
10
 
 
11
#if defined(SVR4Architecture) || defined(i386Sco325Architecture)
 
12
BIOS_MOD = bios_mmap
 
13
#else
 
14
BIOS_MOD = bios_devmem
 
15
#endif
 
16
 
 
17
MOUSESRC = sysv_mouse.c
 
18
MOUSEOBJ = sysv_mouse.o
 
19
 
 
20
SRCS = sysv_init.c sysv_video.c sysv_io.c $(BIOS_MOD).c VTsw_usl.c \
 
21
       sysv_kbd.c std_kbdEv.c posix_tty.c $(MOUSESRC) xqueue.c \
 
22
       libc_wrapper.c stdResource.c stdPci.c vidmem.c sigiostubs.c pm_noop.c \
 
23
       kmod_noop.c agp_noop.c
 
24
 
 
25
OBJS = sysv_init.o sysv_video.o sysv_io.o $(BIOS_MOD).o VTsw_usl.o \
 
26
       sysv_kbd.o std_kbdEv.o posix_tty.o $(MOUSEOBJ) xqueue.o \
 
27
       libc_wrapper.o stdResource.o stdPci.o vidmem.o sigiostubs.o pm_noop.o \
 
28
       kmod_noop.o agp_noop.o
 
29
 
 
30
INCLUDES = -I$(XF86COMSRC) -I$(XF86OSSRC) -I. -I$(SERVERSRC)/include \
 
31
           -I$(XINCLUDESRC) -I$(EXTINCSRC) -I$(SERVERSRC)/mi
 
32
 
 
33
RESDEFINES = -DUSESTDRES
 
34
 
 
35
DEFINES = $(RESDEFINES)
 
36
 
 
37
SubdirLibraryRule($(OBJS))
 
38
NormalLibraryObjectRule()
 
39
 
 
40
#if !defined(SVR4Architecture)
 
41
LinkSourceFile(bios_devmem.c,../shared)
 
42
#else
 
43
LinkSourceFile(bios_mmap.c,../shared)
 
44
#endif
 
45
LinkSourceFile(VTsw_usl.c,../shared)
 
46
LinkSourceFile(sysv_kbd.c,../shared)
 
47
LinkSourceFile(std_kbdEv.c,../shared)
 
48
LinkSourceFile(posix_tty.c,../shared)
 
49
LinkSourceFile(libc_wrapper.c,../shared)
 
50
LinkSourceFile(stdResource.c,../shared)
 
51
LinkSourceFile(stdPci.c,../shared)
 
52
LinkSourceFile(vidmem.c,../shared)
 
53
LinkSourceFile(sigiostubs.c,../shared)
 
54
LinkSourceFile(pm_noop.c,../shared)
 
55
LinkSourceFile(kmod_noop.c,../shared)
 
56
LinkSourceFile(agp_noop.c,../shared)
 
57
 
 
58
DependTarget()