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

« back to all changes in this revision

Viewing changes to unix/xc/lib/Xau/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 $Xorg: Imakefile,v 1.3 2000/08/17 19:45:29 cpqbld Exp $
 
2
 
 
3
 
 
4
 
 
5
 
 
6
XCOMM $XFree86: xc/lib/Xau/Imakefile,v 3.6 2001/01/17 19:42:24 dawes Exp $
 
7
 
 
8
#define DoNormalLib NormalLibXau
 
9
#define DoSharedLib SharedLibXau
 
10
#define DoExtraLib SharedLibXau
 
11
#define DoDebugLib DebugLibXau
 
12
#define DoProfileLib ProfileLibXau
 
13
#define LibName Xau
 
14
#define SoRev SOXAUTHREV
 
15
#define IncSubdir X11
 
16
 
 
17
#include <Threads.tmpl>
 
18
 
 
19
       LINTLIBS = $(LINTXLIB)
 
20
 
 
21
#if HasKrb5
 
22
K5ENCSRC = k5encode.c
 
23
K5ENCOBJ = k5encode.o
 
24
INCLUDES = Krb5Includes
 
25
#else
 
26
K5ENCSRC =
 
27
K5ENCOBJ =
 
28
INCLUDES =
 
29
#endif
 
30
 
 
31
HEADERS = \
 
32
        Xauth.h
 
33
 
 
34
SRCS =  AuDispose.c AuFileName.c AuGetAddr.c AuGetBest.c AuLock.c \
 
35
        AuRead.c AuUnlock.c AuWrite.c $(K5ENCSRC)
 
36
 
 
37
OBJS =  AuDispose.o AuFileName.o AuGetAddr.o AuGetBest.o AuLock.o \
 
38
        AuRead.o AuUnlock.o AuWrite.o $(K5ENCOBJ)
 
39
 
 
40
#include <Library.tmpl>
 
41
 
 
42
DependTarget()