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

« back to all changes in this revision

Viewing changes to unix/xc/programs/xedit/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 $XConsortium: Imakefile,v 1.17 93/08/17 20:49:32 rws Exp $
 
2
XCOMM $XFree86: xc/programs/xedit/Imakefile,v 1.24 2002/10/01 14:31:46 alanh Exp $
 
3
 
 
4
#ifndef OS2Architecture
 
5
#include "lisp/lisp.cf"
 
6
 
 
7
#if BuildSharedLispModules
 
8
CCOPTIONS       = -fpic
 
9
DLLIB           = DlLibrary
 
10
LOCAL_LDFLAGS   = -Xlinker -E
 
11
#endif
 
12
 
 
13
#define IHaveSubdirs
 
14
#define PassCDebugFlags CDEBUGFLAGS="$(CDEBUGFLAGS)"
 
15
 
 
16
        SUBDIRS = lisp
 
17
       LISPLIBS = -Llisp -llisp -Llisp/mp -lmp -Llisp/re -lre
 
18
       LISP_SRC = lisp.c
 
19
       LISP_OBJ = lisp.o
 
20
#endif
 
21
 
 
22
        DEPLIBS = XawClientDepLibs $(SUBDIRS)
 
23
LOCAL_LIBRARIES = $(LISPLIBS) XawClientLibs $(DLLIB)
 
24
  SYS_LIBRARIES = MathLibrary
 
25
#if defined(LynxOSArchitecture) || defined(SVR3Architecture) || defined(LinuxArchitecture)
 
26
        RP_SRCS = realpath.c
 
27
        RP_OBJS = realpath.o
 
28
     RP_DEFINES = -DNEED_REALPATH
 
29
#endif
 
30
#if !HasStrcasecmp
 
31
   STRCCMP_SRCS = strcasecmp.c
 
32
   STRCCMP_OBJS = strcasecmp.o
 
33
STRCCMP_DEFINES = -DNEED_STRCASECMP
 
34
#endif
 
35
       SYS_SRCS = $(RP_SRCS) $(STRCCMP_SRCS)
 
36
       SYS_OBJS = $(RP_OBJS) $(STRCCMP_OBJS)
 
37
    SYS_DEFINES = $(RP_DEFINES) $(STRCCMP_DEFINES)
 
38
        DEFINES = $(SIGNAL_DEFINES) $(SYS_DEFINES)
 
39
       INCLUDES = -I. -Ilisp/re -I- $(MISC_INCLUDES)
 
40
 
 
41
           SRCS = xedit.c commands.c util.c $(SYS_SRCS) ispell.c options.c \
 
42
                  hook.c $(LISP_SRC)
 
43
           OBJS = xedit.o commands.o util.o $(SYS_OBJS) ispell.o options.o \
 
44
                  hook.o $(LISP_OBJ)
 
45
 
 
46
#ifdef IHaveSubdirs
 
47
ForceSubdirs($(SUBDIRS))
 
48
DependSubdirs($(SUBDIRS))
 
49
#endif
 
50
 
 
51
ComplexProgramTarget(xedit)
 
52
InstallAppDefaults(Xedit)
 
53
InstallAppDefaultsLong(Xedit-color,Xedit-color)