d3fbd1df7248d9f5bb2914bf07f9071d381d827e
[chise/xemacs-chise.git] / src / config.h.in
1 /* XEmacs site configuration template file.  -*- C -*-
2    Copyright (C) 1986, 1991-1994, 1998, 1999 Free Software Foundation, Inc.
3
4 This file is part of XEmacs.
5
6 XEmacs is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
9 later version.
10
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with XEmacs; see the file COPYING.  If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21 /* Significantly divergent from FSF. */
22
23 /* No code in XEmacs #includes config.h twice, but some of the code
24    intended to work with other packages as well (like gmalloc.c)
25    think they can include it as many times as they like.  */
26 #ifndef _SRC_CONFIG_H_
27 #define _SRC_CONFIG_H_
28
29
30 /* alloca twiddling belongs in one place, not the s&m headers
31    AIX requires this to be the first thing in the file.  */
32 #undef HAVE_ALLOCA_H
33
34 #ifndef NOT_C_CODE
35 #ifdef __GNUC__
36 #define alloca __builtin_alloca
37 #elif defined __DECC
38 #include <alloca.h>
39 #pragma intrinsic(alloca)
40 #elif defined HAVE_ALLOCA_H
41 #include <alloca.h>
42 #elif defined(_AIX)
43 #pragma alloca
44 #elif ! defined (alloca)
45 void *alloca ();
46 #endif
47 #endif /* C code */
48
49 /* Use this to add code in a structured way to FSF-maintained source
50    files so as to make it obvious where XEmacs changes are. */
51 #define XEMACS 1
52
53 /* Program name */
54 #undef EMACS_PROGNAME
55
56 /* Allow s&m files to differentiate OS versions without having
57    multiple files to maintain. */
58 #undef OS_RELEASE
59
60 /* The configuration name.  This is used as the install directory name
61    for the lib-src programs. */
62 #undef EMACS_CONFIGURATION
63
64 /* The configuration options.  This is exported to Lisp. */
65 #undef EMACS_CONFIG_OPTIONS
66
67 /* The version info from version.sh. Used in #pragma ident in emacs.c */
68 #undef EMACS_MAJOR_VERSION
69 #undef EMACS_MINOR_VERSION
70 #undef EMACS_PATCH_LEVEL
71 #undef EMACS_BETA_VERSION
72 #undef EMACS_VERSION
73 #undef XEMACS_CODENAME
74 /* InfoDock versions, not used with XEmacs */
75 #undef INFODOCK_MAJOR_VERSION
76 #undef INFODOCK_MINOR_VERSION
77 #undef INFODOCK_BUILD_VERSION
78
79 /* Make functions from IEEE Stds 1003.[123] available. */
80 #undef _POSIX_C_SOURCE
81
82 /* Make some functions from Unix98 available. */
83 #undef _XOPEN_SOURCE
84
85 /* Make "extensions" from Unix98 available. */
86 #undef _XOPEN_SOURCE_EXTENDED
87
88 /* Make all functions available on AIX.  See AC_AIX. */
89 #undef _ALL_SOURCE
90
91 /* Make all functions available on GNU libc systems.  See features.h. */
92 #undef _GNU_SOURCE
93
94 /* Make all functions available on Solaris 2 systems. */
95 #undef __EXTENSIONS__
96
97 /* Used to identify the XEmacs version in stack traces. */
98 #undef STACK_TRACE_EYE_CATCHER
99
100 /* Allow the configurer to specify if she wants site-lisp. */
101 #undef INHIBIT_SITE_LISP
102
103 /* Allow the configurer to specify if she wants site-modules. */
104 #undef INHIBIT_SITE_MODULES
105
106 /* This will be removed in 19.15. */
107 /* Hah!  Try 20.3 ... */
108 /* Hah!  Try never ... */
109 /* If at first you don't succeed, try, try again. */
110 /* #define LOSING_BYTECODE */
111
112 /* Undefine on systems which don't have processes */
113 #undef HAVE_UNIX_PROCESSES
114
115 /* Does XEmacs support floating-point numbers? */
116 #undef LISP_FLOAT_TYPE
117
118 /* Define GNU_MALLOC if you want to use the GNU memory allocator. */
119 #undef GNU_MALLOC
120
121 /* Define if you are using the GNU C Library. -- experimental. */
122 #undef DOUG_LEA_MALLOC
123
124 /* Define if you are using libmcheck.a from the GNU C Library. */
125 #undef HAVE_LIBMCHECK
126
127 /* Define if you are using dlmalloc from the Linux C library. */
128 #undef _NO_MALLOC_WARNING_
129
130 /* Use the system malloc? */
131 #undef USE_SYSTEM_MALLOC
132
133 /* Use a debugging malloc? -- experimental */
134 #undef USE_DEBUG_MALLOC
135
136 /* Compile in TTY support? */
137 #undef HAVE_TTY
138
139 /* Compile in support for MS windows? */
140 #undef HAVE_MS_WINDOWS
141
142 /* special cygwin process handling? */
143 #undef HAVE_MSG_SELECT
144
145 /* Compile in support for the X window system? */
146 #undef HAVE_X_WINDOWS
147
148 /* Defines for building X applications */
149 #ifdef HAVE_X_WINDOWS
150 /* The following will be defined if xmkmf thinks they are necessary */
151 #undef SVR4
152 #undef SYSV
153 #undef AIXV3
154 #undef _POSIX_SOURCE
155 #undef _BSD_SOURCE
156 #undef _SVID_SOURCE
157 #undef X_LOCALE
158 #undef NARROWPROTO
159 /* The following should always be defined, no matter what xmkmf thinks. */
160 #ifndef NeedFunctionPrototypes
161 #define NeedFunctionPrototypes 1
162 #endif
163 #ifndef FUNCPROTO
164 #define FUNCPROTO 15
165 #endif
166 #endif /* HAVE_X_WINDOWS */
167
168 /* Define HAVE_WINDOW_SYSTEM if any windowing system is available. */
169 #if defined (HAVE_X_WINDOWS) || defined(HAVE_MS_WINDOWS) /* || defined (HAVE_NEXTSTEP) */
170 #define HAVE_WINDOW_SYSTEM
171 #endif
172
173 /* Define HAVE_UNIXOID_EVENT_LOOP if we use select() to wait for events. */
174 #if defined (HAVE_X_WINDOWS) || defined (HAVE_TTY) || defined(HAVE_MSG_SELECT)
175 #define HAVE_UNIXOID_EVENT_LOOP
176 #endif
177
178 /* XFree86 has a different prototype for this function */
179 #undef HAVE_XREGISTERIMINSTANTIATECALLBACK
180 #undef XREGISTERIMINSTANTIATECALLBACK_NONSTANDARD_PROTOTYPE
181
182 #undef THIS_IS_X11R4
183 #undef THIS_IS_X11R5
184 #undef THIS_IS_X11R6
185
186 #undef HAVE_XCONVERTCASE
187
188 #undef HAVE_BALLOON_HELP
189
190 /* Where do we find bitmaps? */
191 #undef BITMAPDIR
192
193 /* USER_FULL_NAME returns a string that is the user's full name.
194    It can assume that the variable `pw' points to the password file
195    entry for this user.
196
197    At some sites, the pw_gecos field contains the user's full name.
198    If neither this nor any other field contains the right thing, use
199    pw_name, giving the user's login name, since that is better than
200    nothing. */
201 #define USER_FULL_NAME pw->pw_gecos
202
203 /* Define AMPERSAND_FULL_NAME if you use the convention
204    that & in the full name stands for the login id. */
205 #undef AMPERSAND_FULL_NAME
206
207 /* Some things figured out by the configure script, grouped as they are in
208    configure.in. */
209 #undef HAVE_MCHECK_H
210 #undef HAVE_A_OUT_H
211 #undef HAVE_ELF_H
212 #undef HAVE_CYGWIN_VERSION_H
213 #undef HAVE_FCNTL_H
214 #undef HAVE_INTTYPES_H
215 #undef HAVE_LIBGEN_H
216 #undef HAVE_LOCALE_H
217 #undef HAVE_MACH_MACH_H
218 #undef HAVE_SYS_PARAM_H
219 #undef HAVE_SYS_PSTAT_H
220 #undef HAVE_SYS_TIME_H
221 #undef HAVE_SYS_TIMEB_H
222 #undef HAVE_SYS_UN_H
223 #undef HAVE_ULIMIT_H
224 #undef HAVE_UNISTD_H
225
226 #undef HAVE_SYS_WAIT_H
227 #undef HAVE_LIBINTL_H
228 #undef HAVE_X11_XLOCALE_H
229 #undef STDC_HEADERS
230 #undef TIME_WITH_SYS_TIME
231 #undef WORDS_BIGENDIAN
232 #undef HAVE_VFORK_H
233 #undef vfork
234
235 #undef HAVE_LONG_FILE_NAMES
236
237 /* Use lock files to detect multiple edits of the same file? */
238 #undef CLASH_DETECTION
239
240 /* Have shared library support */
241 #undef HAVE_DLOPEN
242 #undef HAVE_DLERROR
243 #undef HAVE__DLERROR
244 #undef HAVE_SHL_LOAD
245 #undef HAVE_DLD_INIT
246 #undef HAVE_SHLIB
247
248 #undef HAVE_LIBINTL
249 #undef HAVE_LIBDNET
250 #undef HAVE_LIBRESOLV
251
252 /* Is `sys_siglist' declared by <signal.h>? */
253 #undef SYS_SIGLIST_DECLARED
254
255 /* Is `struct timeval' declared by <sys/time.h>? */
256 #undef HAVE_TIMEVAL
257
258
259 #undef TM_IN_SYS_TIME
260 #undef HAVE_TM_ZONE
261 #undef HAVE_TZNAME
262
263 /* For `getloadavg' provided by system */
264 #undef HAVE_GETLOADAVG
265 #undef HAVE_SYS_LOADAVG_H
266 /* For implementing `getloadavg' ourselves */
267 #undef HAVE_LIBKSTAT
268 #undef HAVE_KSTAT_H
269
270 /* Is `h_errno' declared by <netdb.h>? */
271 #undef HAVE_H_ERRNO
272
273 /* Does `localtime' cache TZ? */
274 #undef LOCALTIME_CACHE
275
276 /* Can `gettimeofday' accept two arguments? */
277 #undef GETTIMEOFDAY_ONE_ARGUMENT
278
279 #undef HAVE_MMAP
280 #undef HAVE_STRCOLL
281 #undef HAVE_GETPGRP
282 #undef GETPGRP_VOID
283
284 #undef HAVE_INVERSE_HYPERBOLIC
285
286 #undef HAVE_CBRT
287 #undef HAVE_CLOSEDIR
288 #undef HAVE_DUP2
289 #undef HAVE_EACCESS
290 #undef HAVE_FMOD
291 #undef HAVE_FPATHCONF
292 #undef HAVE_FREXP
293 #undef HAVE_FTIME
294 #undef HAVE_GETADDRINFO
295 #undef HAVE_GETHOSTNAME
296 #undef HAVE_GETNAMEINFO
297 #undef HAVE_GETPAGESIZE
298 #undef HAVE_GETTIMEOFDAY
299 #undef HAVE_GETWD
300 #undef HAVE_GETCWD
301 #undef HAVE_LOGB
302 #undef HAVE_LRAND48
303 #undef HAVE_MATHERR
304 #undef HAVE_MKDIR
305 #undef HAVE_MKTIME
306 #undef HAVE_PERROR
307 #undef HAVE_POLL
308 #undef HAVE_RANDOM
309 #undef HAVE_REALPATH
310 #undef HAVE_RENAME
311 #undef HAVE_RES_INIT
312 #undef HAVE_RINT
313 #undef HAVE_RMDIR
314 #undef HAVE_SELECT
315 #undef HAVE_SETITIMER
316 #undef HAVE_SETPGID
317 #undef HAVE_SETSID
318 #undef HAVE_SIGBLOCK
319 #undef HAVE_SIGHOLD
320 #undef HAVE_SIGPROCMASK
321 #undef HAVE_SIGSETJMP
322 #undef HAVE_SNPRINTF
323 #undef HAVE_STPCPY
324 #undef HAVE_STRERROR
325 #undef HAVE_TZSET
326 #undef HAVE_ULIMIT
327 #undef HAVE_USLEEP
328 #undef HAVE_UTIME
329 #undef HAVE_UTIMES
330 #undef HAVE_WAITPID
331 #undef HAVE_VSNPRINTF
332
333 /* PTY support functions */
334 #undef HAVE_GETPT       /* glibc's easy pty allocation function */
335 #undef HAVE__GETPTY     /*   SGI's easy pty allocation function */
336 #undef HAVE_OPENPTY     /*   BSD's easy pty allocation function */
337 #undef HAVE_GRANTPT     /* Unix98 */
338 #undef HAVE_UNLOCKPT    /* Unix98 */
339 #undef HAVE_PTSNAME     /* Unix98 */
340 #undef HAVE_KILLPG      /* BSD */
341 #undef HAVE_TCGETPGRP   /* Posix 1 */
342 #undef HAVE_ISASTREAM   /* SysV streams */
343 #undef HAVE_PTY_H       /* Linux, Tru64 openpty */
344 #undef HAVE_LIBUTIL_H   /* BSD openpty */
345 #undef HAVE_UTIL_H      /* NetBSD openpty */
346 #undef HAVE_STROPTS_H   /* SysV streams */
347 #undef HAVE_STRTIO_H    /* SysV streams TIOCSIGNAL */
348
349 #undef HAVE_SOCKETS
350 #undef HAVE_SOCKADDR_SUN_LEN
351 #undef HAVE_MULTICAST
352 #undef HAVE_SYSVIPC
353 #undef HAVE_LOCKF
354 #undef HAVE_FLOCK
355 #undef HAVE_FSYNC
356 #undef HAVE_FTRUNCATE
357 #undef HAVE_UMASK
358
359 #undef SYSV_SYSTEM_DIR
360 #undef NONSYSTEM_DIR_LIBRARY
361
362 #undef HAVE_TERMIOS
363 #undef HAVE_TERMIO
364 #undef NO_TERMIO
365 #undef SIGNALS_VIA_CHARACTERS
366
367 #undef NLIST_STRUCT
368
369 /* Compile in support for SOCKS? */
370 #undef HAVE_SOCKS
371
372 /* Compile in support for X pixmaps via the `xpm' library? */
373 #undef HAVE_XPM
374 #undef FOR_MSW
375
376 /* Compile in support for "X faces" via the `compface' library?
377    This enables graphical display of X-face headers in mail/news messages */
378 #undef HAVE_XFACE
379
380 /* Compile in support for JPEG images */
381 #undef HAVE_JPEG
382
383 /* Compile in support for TIFF images */
384 #undef HAVE_TIFF
385
386 /* Compile in support for GIF images */
387 #undef HAVE_GIF
388
389 /* Compile in support for PNG images */
390 #undef HAVE_PNG
391
392 /* Do you have the Xmu library?
393    This should always be the case except on losing HP-UX systems. */
394 #undef HAVE_XMU
395
396 /* Compile in support for DBM databases?  May require libgdbm or libdbm. */
397 #undef HAVE_DBM
398
399 /* Compile in support for Berkeley DB style databases?  May require libdb. */
400 #undef HAVE_BERKELEY_DB
401 /* Full #include file path for Berkeley DB's db.h */
402 #undef DB_H_FILE
403
404 /* Do we have either DBM or Berkeley DB database support? */
405 #undef HAVE_DATABASE
406
407 /* Do we have LDAP support? */
408 #undef HAVE_LDAP
409 /* Does the library define ldap_set_option () ? */
410 #undef HAVE_LDAP_SET_OPTION
411 /* Does the library define ldap_get_lderrno () ? */
412 #undef HAVE_LDAP_GET_LDERRNO
413 /* Does the library define ldap_result2error () ? */
414 #undef HAVE_LDAP_RESULT2ERROR
415 /* Does the library define ldap_parse_result () ? */
416 #undef HAVE_LDAP_PARSE_RESULT
417
418 /* Do we have PostgreSQL RDBMS support? */
419 #undef HAVE_POSTGRESQL
420 #undef HAVE_POSTGRESQLV7
421 #undef LIBPQ_FE_H_FILE /* main PostgreSQL header file */
422
423 /* Do you have the Xauth library present?  This will add some extra
424    functionality to gnuserv. */
425 #undef HAVE_XAUTH
426
427 /* Compile in support for gpm (General Purpose Mouse)?  */
428 #undef HAVE_GPM
429
430 /* Compile in support for ncurses?  */
431 #undef HAVE_NCURSES
432 /* Full #include file paths for ncurses' curses.h and term.h. */
433 #undef CURSES_H_FILE
434 #undef TERM_H_FILE
435
436 /* Define USE_ASSERTIONS if you want the abort() to be changed to assert().
437    If the assertion fails, assert_failed() will be called.  This is
438    recommended for general use because it gives more info about the crash
439    than just the abort() message.  Too many people "Can't find the corefile"
440    or have limit-ed core dumps out of existence. */
441 #undef USE_ASSERTIONS
442
443 /* Define one or more of the following if you want lots of extra checks
444    (e.g. structure validation) compiled in.  These should be turned
445    on during the beta-test cycle. */
446
447 /* Check the entire extent structure of a buffer each time an extent
448    change is done, and do other extent-related checks. */
449 #undef ERROR_CHECK_EXTENTS
450
451 /* Make sure that all X... macros are dereferencing the correct type,
452    and that all XSET... macros (as much as possible) are setting the
453    correct type of structure.  Highly recommended for all
454    development work. */
455 #undef ERROR_CHECK_TYPECHECK
456 #ifdef ERROR_CHECK_TYPECHECK
457 #define type_checking_assert(assertion) assert (assertion)
458 #else
459 #define type_checking_assert(assertion)
460 #endif
461
462 /* Make sure valid buffer positions are passed to BUF_* macros. */
463 #undef ERROR_CHECK_BUFPOS
464 #ifdef ERROR_CHECK_BUFPOS
465 #define bufpos_checking_assert(assertion) assert (assertion)
466 #else
467 #define bufpos_checking_assert(assertion)
468 #endif
469
470 /* Attempt to catch bugs related to garbage collection (e.g. not GCPRO'ing). */
471 #undef ERROR_CHECK_GC
472 #ifdef ERROR_CHECK_GC
473 #define gc_checking_assert(assertion) assert (assertion)
474 #else
475 #define gc_checking_assert(assertion)
476 #endif
477
478 /* Attempt to catch freeing of a non-malloc()ed block, heap corruption, etc. */
479 #undef ERROR_CHECK_MALLOC
480
481 /* Minor sanity checking of the bytecode interpreter.  Useful for
482    debugging the byte compiler.  */
483 #undef ERROR_CHECK_BYTE_CODE
484
485 /* Minor sanity checking of glyphs, especially subwindows and
486    widgets. */
487 #undef ERROR_CHECK_GLYPHS
488
489 /* Define DEBUG_XEMACS if you want extra debugging code compiled in.
490    This is mainly intended for use by developers. */
491 #undef DEBUG_XEMACS
492
493 /* Define MEMORY_USAGE_STATS if you want extra code compiled in to
494    determine where XEmacs' memory is going. */
495 #undef MEMORY_USAGE_STATS
496
497 /* Define QUANTIFY if using Quantify from Rational Software.
498    This adds some additional calls to control data collection.
499    It is only intended for use by the developers. */
500 #undef QUANTIFY
501
502 /* Define PURIFY if using Purify from Rational Software.
503    It is only intended for use by the developers. */
504 #undef PURIFY
505
506 #if (defined (QUANTIFY) || defined (PURIFY)) && !defined (XLIB_ILLEGAL_ACCESS)
507 #define XLIB_ILLEGAL_ACCESS 1
508 #endif
509
510 /* Define EXTERNAL_WIDGET to compile support for using the editor as a
511    widget within another program. */
512 #undef EXTERNAL_WIDGET
513
514 /* There are some special-case defines for gcc and lcc. */
515 #undef USE_GCC
516 #undef USE_LCC
517
518 /* Define this if you want level 2 internationalization compliance
519    (localized collation and formatting).  Generally this should be
520    defined, unless your system doesn't have the strcoll() and
521    setlocale() library routines.  This really should be (NOT! -mrb)
522    defined in the appropriate s/ or m/ file. */
523 #undef I18N2
524
525 /* Define this if you want level 3 internationalization compliance
526    (localized messaging).  This will cause a small runtime performance
527    penalty, as the strings are read from the message catalog(s).
528    For this you need the gettext() and dgetext() library routines.
529    WARNING, this code is under construction. */
530 #undef I18N3
531
532 /* Compile in support for CDE (Common Desktop Environment) drag and drop?
533    Requires libDtSvc, which typically must be present at runtime.  */
534 #undef HAVE_CDE
535
536 /* Compile in support for OffiX Drag and Drop? */
537 #undef HAVE_OFFIX_DND
538
539 /* Compile in generic Drag'n'Drop API */
540 #undef HAVE_DRAGNDROP
541
542 /* Compile in support for proper handling of WM_COMMAND. */
543 #undef HAVE_WMCOMMAND
544
545 /* Define this if you want Mule support (multi-byte character support).
546    There may be some performance penalty, although it should be small
547    if you're working with ASCII files. */
548 #undef MULE
549
550 /* Define this if you want UTF-2000 support (character representation
551    based on character object model). */
552 #undef UTF2000
553
554 #undef CHAR_IS_UCS4
555
556 /* Compile in support for external character database. */
557 #undef HAVE_CHISE_CLIENT
558
559 /* Define this if you want file coding support */
560 #undef FILE_CODING
561
562 /* Do we want to use X window input methods for use with Mule? (requires X11R5)
563    If so, use raw Xlib or higher level Motif interface? */
564 #undef HAVE_XIM
565 #undef XIM_XLIB
566 #undef XIM_MOTIF
567 #undef USE_XFONTSET
568
569 /* Non-XIM input methods for use with Mule. */
570 #undef HAVE_CANNA
571 #undef HAVE_WNN
572 #undef WNN6
573
574 /* Enable special GNU Make features in the Makefiles. */
575 #undef USE_GNU_MAKE
576
577 /* Debugging development option: Remove inessential but time consuming
578    actions from happening during build.  This saves a lot of time when
579    you're repeatedly compiling-running-crashing.  This (1) doesn't
580    garbage-collect after loading each file during dumping, and (2)
581    doesn't automatically rebuild the DOC file. (Remove it by hand to
582    get it rebuilt.)
583  */
584 #undef QUICK_BUILD
585
586 /* Defined by AC_C_CONST in configure.in */
587 #undef const
588
589 /* Allow the source to use standard types. Include these before the
590  s&m files so that they can use them. */
591 #undef ssize_t
592 #undef size_t
593 #undef pid_t
594 #undef mode_t
595 #undef off_t
596 #undef uid_t
597 #undef gid_t
598 #undef socklen_t
599
600 /* If defined, use unions instead of ints.  A few systems (DEC Alpha)
601    seem to require this, probably because something with the int
602    definitions isn't right with 64-bit systems.  */
603 #undef USE_UNION_TYPE
604
605 /* The configuration script may define `opsysfile' to be the name of
606    the s/...h file that describes your operating system.
607    The file name is chosen based on the configuration name. */
608
609 #if defined (__cplusplus) && !defined (NOT_C_CODE)
610 extern "C" {
611 #endif
612
613 #undef config_opsysfile
614 #ifdef config_opsysfile
615 #include config_opsysfile
616 #endif
617
618 /* The configuration script may define `machfile' to be the name of
619    the m/...h file that describes the machine you are using.
620    The file name is chosen based on the configuration name. */
621
622 #undef config_machfile
623 #ifdef config_machfile
624 #include config_machfile
625 #endif
626
627 #if defined (__cplusplus) && !defined (NOT_C_CODE)
628 }
629 #endif
630
631 #if defined (USE_SYSTEM_MALLOC) && !defined (SYSTEM_MALLOC)
632 #define SYSTEM_MALLOC
633 #endif
634
635 /* Use the relocating allocator for buffer space? */
636 #undef REL_ALLOC
637
638 /* Define the return type of signal handlers if the s/xxx.h file
639    did not already do so. */
640 #define RETSIGTYPE void
641
642 /* SIGTYPE is the macro we actually use. */
643 #ifndef SIGTYPE
644 #define SIGTYPE RETSIGTYPE
645 #define SIGRETURN return
646 #endif
647
648 /* Define DYNODUMP if it is necessary to properly dump on this system.
649    Currently this is only Solaris 2.x, for x < 6. */
650 #undef DYNODUMP
651
652 /* Compile in support for Sun Sparcworks/WorkShop? */
653 #undef SUNPRO
654
655 /* Sun SparcStations, SGI machines, and HP9000s700s have built-in
656    support for playing sound files. (On Suns, the sound support is
657    usually found in /usr/demo/SOUND - you may need to install the
658    "SUNWaudmo" package.) */
659 #undef HAVE_NATIVE_SOUND
660 /* Native sound may be provided via soundcard.h, in various directories */
661 #undef SOUNDCARD_H_FILE
662
663 /* Compile in support for NAS (Network Audio System)?
664    NAS_NO_ERROR_JUMP means that the NAS libraries don't include some
665    error handling changes. */
666 #undef HAVE_NAS_SOUND
667 #undef NAS_NO_ERROR_JUMP
668
669 /* Compile in support for ESD (Enlightened Sound Daemon)? */
670 #undef HAVE_ESD_SOUND
671
672 /* Compile in support for SunPro usage-tracking code? */
673 #undef USAGE_TRACKING
674
675 /* Compile in support for Tooltalk? */
676 #undef TOOLTALK
677 /* tt_c.h might be in "Tt" or "desktop" subdirectories */
678 #undef TT_C_H_FILE
679
680 /* Toolkits used by lwlib for various widgets... */
681 #undef LWLIB_USES_MOTIF
682 #undef LWLIB_USES_ATHENA
683 #undef LWLIB_MENUBARS_LUCID
684 #undef LWLIB_MENUBARS_MOTIF
685 #undef LWLIB_SCROLLBARS_LUCID
686 #undef LWLIB_SCROLLBARS_MOTIF
687 #undef LWLIB_SCROLLBARS_ATHENA
688 #undef LWLIB_SCROLLBARS_ATHENA3D
689 #undef LWLIB_DIALOGS_MOTIF
690 #undef LWLIB_DIALOGS_ATHENA
691 #undef LWLIB_DIALOGS_ATHENA3D
692 #undef LWLIB_TABS_LUCID
693 #undef LWLIB_WIDGETS_MOTIF
694 #undef LWLIB_WIDGETS_ATHENA
695 #undef HAVE_ATHENA_3D
696
697 /* Other things that can be disabled by configure. */
698 #undef HAVE_MENUBARS
699 #undef HAVE_SCROLLBARS
700 #undef HAVE_DIALOGS
701 #undef HAVE_TOOLBARS
702 #undef HAVE_WIDGETS
703
704
705 #if defined (HAVE_MENUBARS) || defined (HAVE_DIALOGS)
706 #define HAVE_POPUPS
707 #endif
708
709 /* If you are using SunOS 4.1.1 and X11r5, then you need this patch.
710    There is a stupid bug in the SunOS libc.a: two functions which X11r5
711    uses, mbstowcs() and wcstombs(), are unusable when programs are
712    statically linked (as XEmacs must be) because the static version of
713    libc.a contains the *dynamic* versions of these functions.  These
714    functions don't seem to be called when XEmacs is running, so it's
715    enough to define stubs for them.
716
717    This appears to be fixed in SunOS 4.1.2.
718
719    Also, SunOS 4.1.1 contains buggy versions of strcmp and strcpy that
720    sometimes reference memory past the end of the string, which can segv.
721    I don't know whether this has been fixed as of 4.1.2 or 4.1.3. */
722 #if defined (sparc) && !defined (USG)
723 #define OBJECTS_SYSTEM sunOS-fix.o strcmp.o strcpy.o
724 #endif
725
726 /* If you turn this flag on, it forces encapsulation in all
727 circumstances; this can be used to make sure things compile OK
728 on various systems. */
729 #undef DEBUG_ENCAPSULATION
730
731 /* basic system calls */
732
733 #if defined (INTERRUPTIBLE_IO) || defined (DEBUG_ENCAPSULATION)
734 # define ENCAPSULATE_READ
735 # define ENCAPSULATE_WRITE
736 #endif
737 #if defined (INTERRUPTIBLE_OPEN) || defined (MULE) || defined (DEBUG_ENCAPSULATION)
738 # define ENCAPSULATE_OPEN
739 #endif
740 #if defined (INTERRUPTIBLE_CLOSE) || defined (DEBUG_ENCAPSULATION)
741 # define ENCAPSULATE_CLOSE
742 #endif
743
744 /* stdio calls */
745
746 #if defined (INTERRUPTIBLE_IO) || defined (DEBUG_ENCAPSULATION)
747 # define ENCAPSULATE_FREAD
748 # define ENCAPSULATE_FWRITE
749 #endif
750 #if defined (INTERRUPTIBLE_OPEN) || defined (MULE) || defined (DEBUG_ENCAPSULATION)
751 # define ENCAPSULATE_FOPEN
752 #endif
753 #if defined (INTERRUPTIBLE_CLOSE) || defined (DEBUG_ENCAPSULATION)
754 # define ENCAPSULATE_FCLOSE
755 #endif
756
757 /* directory calls */
758
759 #if defined (MULE) || defined (DEBUG_ENCAPSULATION)
760 # define ENCAPSULATE_CHDIR
761 # define ENCAPSULATE_MKDIR
762 # define ENCAPSULATE_OPENDIR
763 # define ENCAPSULATE_CLOSEDIR
764 # define ENCAPSULATE_READDIR
765 # define ENCAPSULATE_RMDIR
766
767 /* file-information calls */
768
769 #ifdef HAVE_EACCESS
770 # define ENCAPSULATE_EACCESS
771 #endif
772 # define ENCAPSULATE_ACCESS
773 # define ENCAPSULATE_LSTAT
774 # define ENCAPSULATE_READLINK
775 # define ENCAPSULATE_STAT
776
777 /* file-manipulation calls */
778
779 # define ENCAPSULATE_CHMOD
780 # define ENCAPSULATE_CREAT
781 # define ENCAPSULATE_LINK
782 # define ENCAPSULATE_RENAME
783 # define ENCAPSULATE_SYMLINK
784 # define ENCAPSULATE_UNLINK
785 # define ENCAPSULATE_EXECVP
786 #endif /* defined (MULE) || defined (DEBUG_ENCAPSULATION) */
787
788 #ifdef HAVE_CANNA
789 #  define CANNA2
790 #  define CANNA_MULE
791 #  define CANNA_PURESIZE 0
792 #else  /* not CANNA */
793 #  define CANNA_PURESIZE 0
794 #endif /* not CANNA */
795
796 #if defined (HAVE_SOCKS) && !defined (DO_NOT_SOCKSIFY)
797 #define accept Raccept
798 #define bind Rbind
799 #define connect Rconnect
800 #define getsockname Rgetsockname
801 #define listen Rlisten
802 #endif /* HAVE_SOCKS && !DO_NOT_SOCKSIFY */
803
804 #undef SIZEOF_SHORT
805 #undef SIZEOF_INT
806 #undef SIZEOF_LONG
807 #undef SIZEOF_LONG_LONG
808 #undef SIZEOF_VOID_P
809
810 #ifndef BITS_PER_CHAR
811 #define BITS_PER_CHAR 8
812 #endif
813 #define SHORTBITS (SIZEOF_SHORT * BITS_PER_CHAR)
814 #define INTBITS (SIZEOF_INT * BITS_PER_CHAR)
815 #define LONGBITS (SIZEOF_LONG * BITS_PER_CHAR)
816 #define LONG_LONG_BITS (SIZEOF_LONG_LONG * BITS_PER_CHAR)
817 #define VOID_P_BITS (SIZEOF_VOID_P * BITS_PER_CHAR)
818
819 /* Use `INLINE_HEADER' to define inline functions in .h files.
820    Use `inline static' to define inline functions in .c files.
821    See the Internals manual for examples and more information. */
822
823 /* Does the keyword `inline' exist?  */
824 #undef inline
825
826 #if defined (__cplusplus) || ! defined (__GNUC__)
827 # define INLINE_HEADER inline static
828 #elif defined (DONT_EXTERN_INLINE_HEADER_FUNCTIONS)
829 # define INLINE_HEADER inline
830 #else
831 # define INLINE_HEADER inline extern
832 #endif
833
834 #ifndef NOT_C_CODE /* Actually means C or C++ */
835 # if defined (__cplusplus)
836 /* Avoid C++ keywords used as ordinary C identifiers */
837 #  define class c_class
838 #  define new   c_new
839 #  define this  c_this
840 #  define catch c_catch
841
842 #  define EXTERN_C extern "C"
843 # else /* C code */
844 #  define EXTERN_C extern
845 # endif
846 #endif /* C or C++ */
847
848 /* Strictly speaking, only int or unsigned int are valid types in a
849    bitfield.  In practice, we would like to use enums as bitfields.
850    The following should just result in warning avoidance:
851    warning: nonportable bit-field type */
852 #ifdef __GNUC__
853 #define enum_field(enumeration_type) enum enumeration_type
854 #else
855 #define enum_field(enumeration_type) unsigned int
856 #endif
857
858 /* We want to avoid saving the signal mask if possible, because
859    that necessitates a system call. */
860 #ifdef HAVE_SIGSETJMP
861 # define SETJMP(x) sigsetjmp (x, 0)
862 # define LONGJMP(x, y) siglongjmp (x, y)
863 # define JMP_BUF sigjmp_buf
864 #else
865 # define SETJMP(x) setjmp (x)
866 # define LONGJMP(x, y) longjmp (x, y)
867 # define JMP_BUF jmp_buf
868 #endif
869
870 /* movemail options */
871 /* Should movemail use POP3 for mail access? */
872 #undef MAIL_USE_POP
873 /* Should movemail use kerberos for POP authentication? */
874 #undef KERBEROS
875 /* Should movemail use hesiod for getting POP server host? */
876 #undef HESIOD
877 /* Determine type of mail locking. */
878 #undef MAIL_LOCK_LOCKF
879 #undef MAIL_LOCK_FLOCK
880 #undef MAIL_LOCK_DOT
881 #undef MAIL_LOCK_LOCKING
882 #undef MAIL_LOCK_MMDF
883
884 #undef PREFIX_USER_DEFINED
885 #undef EXEC_PREFIX_USER_DEFINED
886 #undef MODULEDIR_USER_DEFINED
887 #undef SITEMODULEDIR_USER_DEFINED
888 #undef DOCDIR_USER_DEFINED
889 #undef LISPDIR_USER_DEFINED
890 #undef PACKAGE_PATH_USER_DEFINED
891 #undef SITELISPDIR_USER_DEFINED
892 #undef ARCHLIBDIR_USER_DEFINED
893 #undef ETCDIR_USER_DEFINED
894 #undef INFODIR_USER_DEFINED
895 #undef INFOPATH_USER_DEFINED
896
897 #undef PDUMP
898
899 #endif /* _SRC_CONFIG_H_ */