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

« back to all changes in this revision

Viewing changes to unix/xc/config/cf/minix.cf

  • 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: minix.cf,v 1.3 2000/08/17 19:41:47 cpqbld Exp $
 
2
 
 
3
 
 
4
 
 
5
XCOMM platform:  $XFree86: xc/config/cf/minix.cf,v 3.6 2001/01/17 16:22:32 dawes Exp $
 
6
 
 
7
 
 
8
/*
 
9
 * If you want to change any of these, do it in the BeforeVendorCF part
 
10
 * of site.def
 
11
 */
 
12
#define OSName                  Minix-386vm
 
13
#define OSVendor                /* philip@cs.vu.nl */
 
14
#define OSMajorVersion          1
 
15
#define OSMinorVersion          6
 
16
#define OSTeenyVersion          25.1.0
 
17
 
 
18
#define AcdGcc
 
19
 
 
20
#ifdef AcdGcc
 
21
#define ServerExtraDefines      -DGCCUSESGAS XFree86ServerDefines
 
22
#define AsmDefines              -DUSE_GAS
 
23
#define GccGasOption            -DGCCUSESGAS /* For SuperProbe */
 
24
#endif
 
25
 
 
26
/* Defaults for Minix */
 
27
 
 
28
#define ConnectionFlags         -DMNX_TCPCONN
 
29
#define StandardDefines         -D_MINIX -DMINIX -D_POSIX_SOURCE
 
30
#define StandardIncludes        
 
31
 
 
32
#define DoRanlibCmd             NO
 
33
#define AvoidNullMakeCommand    YES
 
34
#define HasSockets              NO
 
35
#define HasStreams              NO
 
36
#define HasVFork                NO
 
37
#define HasNdbm                 YES
 
38
#define ExtraLibraries          -lnbio
 
39
#define NeedConstPrototypes     YES
 
40
#define NeedVarargsPrototypes   YES
 
41
#define NeedNestedPrototypes    YES
 
42
/* #define UseCCMakeDepend              YES */
 
43
#define DefaultCCOptions        -wo -fsoft
 
44
#define ArCmd                   CcCmd -c.a -o
 
45
#define ArAddCmd                ArCmd
 
46
#define CcCmd                   acd -descr gcc -name cc
 
47
#define AsCmd                   CcCmd -c
 
48
#define CppCmd                  /usr/lib/cpp
 
49
#define LdCmd                   CcCmd
 
50
#define LdCombineFlags          -r
 
51
#define LexLib                  /* */
 
52
 
 
53
#define SetTtyGroup             YES     /* for xterm */
 
54
#define HasPutenv               YES     /* for xsm */
 
55
 
 
56
#ifndef AssembleObject
 
57
#define AssembleObject(flags) $(RM) $@                                    @@\
 
58
        $(CPP) AsmDefines $(DEFINES) $(INCLUDES) flags $*.S | \           @@\
 
59
            grep -v '^\#' > $*.i.s                                        @@\
 
60
        $(AS) -o $*.o $*.i.s                                              @@\
 
61
        $(RM) $*.i.s
 
62
#endif
 
63
 
 
64
#include <xfree86.cf>