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