comparison nt/config.inc.samp @ 1261:465bd3c7d932

[xemacs-hg @ 2003-02-06 06:35:47 by ben] various bug fixes mule/cyril-util.el: Fix compile warning. loadup.el, make-docfile.el, update-elc-2.el, update-elc.el: Set stack-trace-on-error, load-always-display-messages so we get better debug results. update-elc-2.el: Fix typo in name of lisp/mule, leading to compile failure. simple.el: Omit M-S-home/end from motion keys. update-elc.el: Overhaul: -- allow list of "early-compile" files to be specified, not hardcoded -- fix autoload checking to include all .el files, not just dumped ones -- be smarter about regenerating autoloads, so we don't need to use loadup-el if not necessary -- use standard methods for loading/not loading auto-autoloads.el (maybe fixes "Already loaded" error?) -- rename misleading NOBYTECOMPILE flag file. window-xemacs.el: Fix bug in default param. window-xemacs.el: Fix compile warnings. lwlib-Xm.c: Fix compile warning. lispref/mule.texi: Lots of Mule rewriting. internals/internals.texi: Major fixup. Correct for new names of Bytebpos, Ichar, etc. and lots of Mule rewriting. config.inc.samp: Various fixups. Makefile.in.in: NOBYTECOMPILE -> BYTECOMPILE_CHANGE. esd.c: Warning fixes. fns.c: Eliminate bogus require-prints-loading-message; use already existent load-always-display-messages instead. Make sure `load' knows we are coming from `require'. lread.c: Turn on `load-warn-when-source-newer' by default. Change loading message to indicate when we are `require'ing. Eliminate purify_flag hacks to display more messages; instead, loadup and friends specify this explicitly with `load-always-display-messages'. Add spaces when batch to clearly indicate recursive loading. Fassoc() does not GC so no need to gcpro. gui-x.c, gui-x.h, menubar-x.c: Fix up crashes when selecting menubar items due to lack of GCPROing of callbacks in lwlib structures. eval.c, lisp.h, print.c: Don't canonicalize to selected-frame when noninteractive, or backtraces get all screwed up as some values are printed through the stream console and some aren't. Export canonicalize_printcharfun() and use in Fbacktrace().
author ben
date Thu, 06 Feb 2003 06:36:17 +0000
parents 5f2f8dcbfb3e
children 4542b72c005e
comparison
equal deleted inserted replaced
1260:278c9cd3435e 1261:465bd3c7d932
33 ############################################################################ 33 ############################################################################
34 # Compiled-in features: graphics formats # 34 # Compiled-in features: graphics formats #
35 ############################################################################ 35 ############################################################################
36 36
37 # Set this to enable XPM support (virtually mandatory), and specify 37 # Set this to enable XPM support (virtually mandatory), and specify
38 # the directory containing xpm. 38 # the directory containing xpm. Get the library from
39 # http://ftp.xemacs.org/aux/xpm-3.4k.tar.gz.
39 HAVE_XPM=1 40 HAVE_XPM=1
40 XPM_DIR=c:\src\xpm-3.4k 41 XPM_DIR=c:\src\xpm-3.4k
41 42
42 # Set this to enable GIF support. 43 # Set this to enable GIF support (built-in).
43 HAVE_GIF=1 44 HAVE_GIF=1
44 45
45 # Set this to enable PNG support (virtually mandatory), and specify 46 # Set this to enable PNG support (virtually mandatory), and specify
46 # the directories containing png and zlib. 47 # the directories containing png and zlib. Get the latest version from
48 # ftp://ftp.uu.net/graphics/png/. You will have to rename the zlib directory
49 # from zlib-1.1.3 or whatever to just `zlib' for the build to work.
47 HAVE_PNG=1 50 HAVE_PNG=1
48 PNG_DIR=c:\src\libpng-1.0.9 51 PNG_DIR=c:\src\libpng-1.0.12
49 ZLIB_DIR=c:\src\zlib 52 ZLIB_DIR=c:\src\zlib
50 53
51 # Set this to enable TIFF support, and specify the directory containing tiff. 54 # Set this to enable TIFF support, and specify the directory containing tiff.
55 # Get the latest version from ftp://ftp.uu.net/graphics/tiff/. Not on by
56 # default since TIFF isn't really very important and those TIFF wankers
57 # couldn't be bothered to incorporate minimal MS-Windows patches they've
58 # had sitting around for years, so getting it to build is a major pain in
59 # the ass.
52 HAVE_TIFF=0 60 HAVE_TIFF=0
53 TIFF_DIR= 61 TIFF_DIR=c:\src\tiff-v3.4
54 62
55 # Set this to enable JPEG support, and specify the directory containing jpeg. 63 # Set this to enable JPEG support, and specify the directory containing jpeg.
64 # Get the latest version from ftp://ftp.uu.net/graphics/jpeg/.
56 HAVE_JPEG=1 65 HAVE_JPEG=1
57 JPEG_DIR=c:\src\jpeg-6b 66 JPEG_DIR=c:\src\jpeg-6b
58 67
59 # Set this to enable XFace support, and specify the directory containing 68 # Set this to enable XFace support, and specify the directory containing
60 # compface. 69 # compface. Get the library from http://ftp.xemacs.org/aux/compface.tar.gz.
61 HAVE_XFACE=0 70 HAVE_XFACE=0
62 COMPFACE_DIR= 71 COMPFACE_DIR=
63 72
64 ############################################################################ 73 ############################################################################
65 # Build settings # 74 # Build settings #
67 76
68 # Set this to specify the location of makeinfo. (If not set, XEmacs will 77 # Set this to specify the location of makeinfo. (If not set, XEmacs will
69 # attempt to use its built-in, much slower texinfo support when building 78 # attempt to use its built-in, much slower texinfo support when building
70 # info files.) If you are building XEmacs yourself, you probably have 79 # info files.) If you are building XEmacs yourself, you probably have
71 # Cygwin sitting around already. If not, you should. Cygwin provides a 80 # Cygwin sitting around already. If not, you should. Cygwin provides a
72 # `makeinfo.exe' in /usr/bin/makeinfo. 81 # `makeinfo.exe' in /usr/bin/makeinfo (/usr/bin is virtual, it's /bin in
73 MAKEINFO=c:\cygwin\usr\bin\makeinfo.exe 82 # the actual file system).
83 MAKEINFO=c:\cygwin\bin\makeinfo.exe
74 84
75 # Set this to turn on optimization when compiling. 85 # Set this to turn on optimization when compiling.
76 OPTIMIZED_BUILD=0 86 OPTIMIZED_BUILD=0
77 87
78 # Set this to build with the fastcall calling convention, which uses registers 88 # Set this to build with the fastcall calling convention, which uses registers
123 133
124 # Set this to use the portable dumper for dumping the preloaded Lisp 134 # Set this to use the portable dumper for dumping the preloaded Lisp
125 # routines, instead of the older "unexec" routines in unexnt.c. 135 # routines, instead of the older "unexec" routines in unexnt.c.
126 USE_PORTABLE_DUMPER=1 136 USE_PORTABLE_DUMPER=1
127 137
128 # Set this to use new experimental GC algorithms. 138 # Set this to use the new experimental garbage-collection routines instead
139 # of the traditional XEmacs garbage-collection routines.
129 USE_KKCC=0 140 USE_KKCC=0
130 141
131 # Set this to turn on the use of the union type, which gets you improved 142 # Set this to turn on the use of the union type, which gets you improved
132 # type checking of Lisp_Objects -- they're declared as unions instead of 143 # type checking of Lisp_Objects -- they're declared as unions instead of
133 # ints, and so places where a Lisp_Object is mistakenly passed to a routine 144 # ints, and so places where a Lisp_Object is mistakenly passed to a routine