Sync up with r21-4-22.
[chise/xemacs-chise.git.1] / nt / config.inc.samp
1 # -*- mode: makefile -*-
2
3 ############################################################################
4
5 INSTALL_DIR=c:\Program Files\XEmacs\XEmacs-$(XEMACS_VERSION_STRING)
6
7 # Set this if your packages are installed in an unusal place.
8 #PACKAGE_PREFIX=c:\Program Files\XEmacs
9
10 ############################################################################
11
12 # Multilingual support (not currently working).
13 HAVE_MULE=0
14
15 # Native MS Windows support.
16 HAVE_MS_WINDOWS=1
17
18 # X Windows support.
19 HAVE_X_WINDOWS=0
20 X11_DIR=
21
22 # GTK support. Do NOT set this to 1; gtk-xemacs is not supported on
23 # MSWindows (mingw or msvc).  Yes, we know that gtk has been ported to
24 # native MSWindows but XEmacs is not yet ready to use that port.
25 HAVE_GTK=0
26 GTK_DIR=
27
28 ############################################################################
29 #                  Compiled-in features: graphics formats                  #
30 ############################################################################
31
32 # Directory under which the optional libraries are placed.  To make your
33 # life easy, just grab http://ftp.xemacs.org/aux/optional-libs.exe
34 # (a self-installing .ZIP) and unzip them into an appropriate directory
35 # (by default, c:\src).  This gets you precompiled versions of all of
36 # the libraries below.
37 OPTIONAL_LIBRARY_DIR=c:\src
38
39 # Set this to enable XPM support (virtually mandatory), and specify
40 # the directory containing xpm.  Get the library from
41 # http://ftp.xemacs.org/aux/xpm-3.4k.tar.gz.
42 HAVE_XPM=1
43 XPM_DIR=$(OPTIONAL_LIBRARY_DIR)\xpm-3.4k
44
45 # Set this to enable GIF support (built-in).
46 HAVE_GIF=1
47
48 # Set this to enable PNG support (virtually mandatory), and specify
49 # the directories containing png and zlib.  Get the latest version from
50 # ftp://ftp.uu.net/graphics/png/.  NOTE: In order to compile libpng,
51 # you will have to rename the zlib directory to just `zlib'.  We don't
52 # do that here so we can preserve the version number, like for the other
53 # libraries.
54 HAVE_PNG=1
55 PNG_DIR=$(OPTIONAL_LIBRARY_DIR)\libpng-1.2.8
56 ZLIB_DIR=$(OPTIONAL_LIBRARY_DIR)\zlib-1.2.1
57
58 # Set this to enable JPEG support (useful, but not necessary), and specify
59 # the directory containing jpeg.  Get the latest version from
60 # ftp://ftp.uu.net/graphics/jpeg/.
61 HAVE_JPEG=1
62 JPEG_DIR=$(OPTIONAL_LIBRARY_DIR)\jpeg-6b
63
64 # Set this to enable TIFF support (not very important), and specify the
65 # directory containing tiff.  Get the latest version from
66 # ftp://ftp.uu.net/graphics/tiff/.
67 HAVE_TIFF=1
68 TIFF_DIR=$(OPTIONAL_LIBRARY_DIR)\tiff-v3.5.7
69
70 # Set this to enable XFace support (not very important), and specify the
71 # directory containing compface.  Get the library from
72 # http://ftp.xemacs.org/aux/compface-1.5-1.tar.gz.
73 HAVE_XFACE=1
74 COMPFACE_DIR=$(OPTIONAL_LIBRARY_DIR)\compface-1.5.1
75
76 ############################################################################
77
78 # Set this to specify the location of makeinfo. (If not set, XEmacs will
79 # attempt to use its built-in texinfo support when building info files.)
80 MAKEINFO=c:\cygwin\bin\makeinfo.exe
81
82 ############################################################################
83
84 # Set this to enable some debug code that doesn't slow things down.
85 DEBUG_XEMACS=1
86
87 # Set this to speed up building, for development purposes.
88 QUICK_BUILD=0
89
90 # Set this to see exactly which compilation commands are being run (not
91 # generally recommended).
92 VERBOSECC=0
93
94 # Set this to get nmake to use dependency info (requires Perl to be installed)
95 DEPEND=0
96
97 # Set this to use the portable dumper for dumping the preloaded Lisp
98 # routines, instead of the older "unexec" routines in unexnt.c.
99 USE_PORTABLE_DUMPER=1
100
101 # Set this to build XEmacs with the Intel C Compiler.
102 USE_INTEL_COMPILER=0