XEmacs 21.2.44 "Thalia".
[chise/xemacs-chise.git.1] / 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 #undef HAVE_UTIME_H
226
227 #undef HAVE_SYS_WAIT_H
228 #undef HAVE_LIBINTL_H
229 #undef HAVE_X11_XLOCALE_H
230 #undef STDC_HEADERS
231 #undef TIME_WITH_SYS_TIME
232 #undef WORDS_BIGENDIAN
233 #undef HAVE_VFORK_H
234 #undef vfork
235
236 #undef HAVE_LONG_FILE_NAMES
237
238 /* Use lock files to detect multiple edits of the same file? */
239 #undef CLASH_DETECTION
240
241 /* Have shared library support */
242 #undef HAVE_DLOPEN
243 #undef HAVE_DLERROR
244 #undef HAVE__DLERROR
245 #undef HAVE_SHL_LOAD
246 #undef HAVE_DLD_INIT
247 #undef HAVE_SHLIB
248
249 #undef HAVE_LIBINTL
250 #undef HAVE_LIBDNET
251 #undef HAVE_LIBRESOLV
252
253 /* Is `sys_siglist' declared by <signal.h>? */
254 #undef SYS_SIGLIST_DECLARED
255
256 /* Is `struct utimbuf' declared by <utime.h>? */
257 #undef HAVE_STRUCT_UTIMBUF
258
259 /* Is `struct timeval' declared by <sys/time.h>? */
260 #undef HAVE_TIMEVAL
261
262
263 #undef TM_IN_SYS_TIME
264 #undef HAVE_TM_ZONE
265 #undef HAVE_TZNAME
266
267 /* For `getloadavg' provided by system */
268 #undef HAVE_GETLOADAVG
269 #undef HAVE_SYS_LOADAVG_H
270 /* For implementing `getloadavg' ourselves */
271 #undef HAVE_LIBKSTAT
272 #undef HAVE_KSTAT_H
273
274 /* Is `h_errno' declared by <netdb.h>? */
275 #undef HAVE_H_ERRNO
276
277 /* Does `localtime' cache TZ? */
278 #undef LOCALTIME_CACHE
279
280 /* Can `gettimeofday' accept two arguments? */
281 #undef GETTIMEOFDAY_ONE_ARGUMENT
282
283 #undef HAVE_MMAP
284 #undef HAVE_STRCOLL
285 #undef HAVE_GETPGRP
286 #undef GETPGRP_VOID
287
288 #undef HAVE_INVERSE_HYPERBOLIC
289
290 #undef HAVE_CBRT
291 #undef HAVE_CLOSEDIR
292 #undef HAVE_DUP2
293 #undef HAVE_EACCESS
294 #undef HAVE_FMOD
295 #undef HAVE_FPATHCONF
296 #undef HAVE_FREXP
297 #undef HAVE_FTIME
298 #undef HAVE_GETADDRINFO
299 #undef HAVE_GETHOSTNAME
300 #undef HAVE_GETNAMEINFO
301 #undef HAVE_GETPAGESIZE
302 #undef HAVE_GETTIMEOFDAY
303 #undef HAVE_GETWD
304 #undef HAVE_GETCWD
305 #undef HAVE_LOGB
306 #undef HAVE_LRAND48
307 #undef HAVE_MATHERR
308 #undef HAVE_MKDIR
309 #undef HAVE_MKTIME
310 #undef HAVE_PERROR
311 #undef HAVE_POLL
312 #undef HAVE_RANDOM
313 #undef HAVE_REALPATH
314 #undef HAVE_RENAME
315 #undef HAVE_RES_INIT
316 #undef HAVE_RINT
317 #undef HAVE_RMDIR
318 #undef HAVE_SELECT
319 #undef HAVE_SETITIMER
320 #undef HAVE_SETPGID
321 #undef HAVE_SETSID
322 #undef HAVE_SIGBLOCK
323 #undef HAVE_SIGHOLD
324 #undef HAVE_SIGPROCMASK
325 #undef HAVE_SIGSETJMP
326 #undef HAVE_SNPRINTF
327 #undef HAVE_STPCPY
328 #undef HAVE_STRERROR
329 #undef HAVE_TZSET
330 #undef HAVE_ULIMIT
331 #undef HAVE_USLEEP
332 #undef HAVE_UTIMES
333 #undef HAVE_WAITPID
334 #undef HAVE_VSNPRINTF
335
336 /* PTY support functions */
337 #undef HAVE_GETPT       /* glibc's easy pty allocation function */
338 #undef HAVE__GETPTY     /*   SGI's easy pty allocation function */
339 #undef HAVE_OPENPTY     /*   BSD's easy pty allocation function */
340 #undef HAVE_GRANTPT     /* Unix98 */
341 #undef HAVE_UNLOCKPT    /* Unix98 */
342 #undef HAVE_PTSNAME     /* Unix98 */
343 #undef HAVE_KILLPG      /* BSD */
344 #undef HAVE_TCGETPGRP   /* Posix 1 */
345 #undef HAVE_ISASTREAM   /* SysV streams */
346 #undef HAVE_PTY_H       /* Linux, Tru64 openpty */
347 #undef HAVE_LIBUTIL_H   /* BSD openpty */
348 #undef HAVE_UTIL_H      /* NetBSD openpty */
349 #undef HAVE_STROPTS_H   /* SysV streams */
350 #undef HAVE_STRTIO_H    /* SysV streams TIOCSIGNAL */
351
352 #undef HAVE_SOCKETS
353 #undef HAVE_SOCKADDR_SUN_LEN
354 #undef HAVE_MULTICAST
355 #undef HAVE_SYSVIPC
356 #undef HAVE_LOCKF
357 #undef HAVE_FLOCK
358 #undef HAVE_FSYNC
359 #undef HAVE_FTRUNCATE
360 #undef HAVE_UMASK
361
362 #undef SYSV_SYSTEM_DIR
363 #undef NONSYSTEM_DIR_LIBRARY
364
365 #undef HAVE_TERMIOS
366 #undef HAVE_TERMIO
367 #undef NO_TERMIO
368 #undef SIGNALS_VIA_CHARACTERS
369
370 #undef NLIST_STRUCT
371
372 /* Compile in support for SOCKS? */
373 #undef HAVE_SOCKS
374
375 /* Compile in support for X pixmaps via the `xpm' library? */
376 #undef HAVE_XPM
377 #undef FOR_MSW
378
379 /* Compile in support for "X faces" via the `compface' library?
380    This enables graphical display of X-face headers in mail/news messages */
381 #undef HAVE_XFACE
382
383 /* Compile in support for JPEG images */
384 #undef HAVE_JPEG
385
386 /* Compile in support for TIFF images */
387 #undef HAVE_TIFF
388
389 /* Compile in support for GIF images */
390 #undef HAVE_GIF
391
392 /* Compile in support for PNG images */
393 #undef HAVE_PNG
394
395 /* Do you have the Xmu library?
396    This should always be the case except on losing HP-UX systems. */
397 #undef HAVE_XMU
398
399 /* Compile in support for DBM databases?  May require libgdbm or libdbm. */
400 #undef HAVE_DBM
401
402 /* Compile in support for Berkeley DB style databases?  May require libdb. */
403 #undef HAVE_BERKELEY_DB
404 /* Full #include file path for Berkeley DB's db.h */
405 #undef DB_H_FILE
406
407 /* Do we have either DBM or Berkeley DB database support? */
408 #undef HAVE_DATABASE
409
410 /* Do we have LDAP support? */
411 #undef HAVE_LDAP
412 /* Does the library define ldap_set_option () ? */
413 #undef HAVE_LDAP_SET_OPTION
414 /* Does the library define ldap_get_lderrno () ? */
415 #undef HAVE_LDAP_GET_LDERRNO
416 /* Does the library define ldap_result2error () ? */
417 #undef HAVE_LDAP_RESULT2ERROR
418 /* Does the library define ldap_parse_result () ? */
419 #undef HAVE_LDAP_PARSE_RESULT
420
421 /* Do we have PostgreSQL RDBMS support? */
422 #undef HAVE_POSTGRESQL
423 #undef HAVE_POSTGRESQLV7
424 #undef LIBPQ_FE_H_FILE /* main PostgreSQL header file */
425
426 /* Do you have the Xauth library present?  This will add some extra
427    functionality to gnuserv. */
428 #undef HAVE_XAUTH
429
430 /* Compile in support for gpm (General Purpose Mouse)?  */
431 #undef HAVE_GPM
432
433 /* Compile in support for ncurses?  */
434 #undef HAVE_NCURSES
435 /* Full #include file paths for ncurses' curses.h and term.h. */
436 #undef CURSES_H_FILE
437 #undef TERM_H_FILE
438
439 /* Define USE_ASSERTIONS if you want the abort() to be changed to assert().
440    If the assertion fails, assert_failed() will be called.  This is
441    recommended for general use because it gives more info about the crash
442    than just the abort() message.  Too many people "Can't find the corefile"
443    or have limit-ed core dumps out of existence. */
444 #undef USE_ASSERTIONS
445
446 /* Define one or more of the following if you want lots of extra checks
447    (e.g. structure validation) compiled in.  These should be turned
448    on during the beta-test cycle. */
449
450 /* Check the entire extent structure of a buffer each time an extent
451    change is done, and do other extent-related checks. */
452 #undef ERROR_CHECK_EXTENTS
453
454 /* Make sure that all X... macros are dereferencing the correct type,
455    and that all XSET... macros (as much as possible) are setting the
456    correct type of structure.  Highly recommended for all
457    development work. */
458 #undef ERROR_CHECK_TYPECHECK
459 #ifdef ERROR_CHECK_TYPECHECK
460 #define type_checking_assert(assertion) assert (assertion)
461 #else
462 #define type_checking_assert(assertion)
463 #endif
464
465 /* Make sure valid buffer positions are passed to BUF_* macros. */
466 #undef ERROR_CHECK_BUFPOS
467 #ifdef ERROR_CHECK_BUFPOS
468 #define bufpos_checking_assert(assertion) assert (assertion)
469 #else
470 #define bufpos_checking_assert(assertion)
471 #endif
472
473 /* Attempt to catch bugs related to garbage collection (e.g. not GCPRO'ing). */
474 #undef ERROR_CHECK_GC
475 #ifdef ERROR_CHECK_GC
476 #define gc_checking_assert(assertion) assert (assertion)
477 #else
478 #define gc_checking_assert(assertion)
479 #endif
480
481 /* Attempt to catch freeing of a non-malloc()ed block, heap corruption, etc. */
482 #undef ERROR_CHECK_MALLOC
483
484 /* Minor sanity checking of the bytecode interpreter.  Useful for
485    debugging the byte compiler.  */
486 #undef ERROR_CHECK_BYTE_CODE
487
488 /* Minor sanity checking of glyphs, especially subwindows and
489    widgets. */
490 #undef ERROR_CHECK_GLYPHS
491
492 /* Define DEBUG_XEMACS if you want extra debugging code compiled in.
493    This is mainly intended for use by developers. */
494 #undef DEBUG_XEMACS
495
496 /* Define MEMORY_USAGE_STATS if you want extra code compiled in to
497    determine where XEmacs' memory is going. */
498 #undef MEMORY_USAGE_STATS
499
500 /* Define QUANTIFY if using Quantify from Rational/Pure/Atria Software.
501    This adds some additional calls to control data collection.
502    It is only intended for use by the developers. */
503 #undef QUANTIFY
504
505 /* Define QUANTIFY if using Purify from Rational/Pure/Atria Software.
506    It is only intended for use by the developers. */
507 #undef PURIFY
508
509 #if (defined (QUANTIFY) || defined (PURIFY)) && !defined (XLIB_ILLEGAL_ACCESS)
510 #define XLIB_ILLEGAL_ACCESS 1
511 #endif
512
513 /* Define EXTERNAL_WIDGET to compile support for using the editor as a
514    widget within another program. */
515 #undef EXTERNAL_WIDGET
516
517 /* There are some special-case defines for gcc and lcc. */
518 #undef USE_GCC
519 #undef USE_LCC
520
521 /* Define this if you want level 2 internationalization compliance
522    (localized collation and formatting).  Generally this should be
523    defined, unless your system doesn't have the strcoll() and
524    setlocale() library routines.  This really should be (NOT! -mrb)
525    defined in the appropriate s/ or m/ file. */
526 #undef I18N2
527
528 /* Define this if you want level 3 internationalization compliance
529    (localized messaging).  This will cause a small runtime performance
530    penalty, as the strings are read from the message catalog(s).
531    For this you need the gettext() and dgetext() library routines.
532    WARNING, this code is under construction. */
533 #undef I18N3
534
535 /* Compile in support for CDE (Common Desktop Environment) drag and drop?
536    Requires libDtSvc, which typically must be present at runtime.  */
537 #undef HAVE_CDE
538
539 /* Compile in support for OffiX Drag and Drop? */
540 #undef HAVE_OFFIX_DND
541
542 /* Compile in generic Drag'n'Drop API */
543 #undef HAVE_DRAGNDROP
544
545 /* Compile in support for proper handling of WM_COMMAND. */
546 #undef HAVE_WMCOMMAND
547
548 /* Define this if you want Mule support (multi-byte character support).
549    There may be some performance penalty, although it should be small
550    if you're working with ASCII files. */
551 #undef MULE
552
553 /* Define this if you want file coding support */
554 #undef FILE_CODING
555
556 /* Do we want to use X window input methods for use with Mule? (requires X11R5)
557    If so, use raw Xlib or higher level Motif interface? */
558 #undef HAVE_XIM
559 #undef XIM_XLIB
560 #undef XIM_MOTIF
561 #undef USE_XFONTSET
562
563 /* Non-XIM input methods for use with Mule. */
564 #undef HAVE_CANNA
565 #undef HAVE_WNN
566 #undef WNN6
567
568 /* Enable special GNU Make features in the Makefiles. */
569 #undef USE_GNU_MAKE
570
571 /* Debugging development option: Remove inessential but time consuming
572    actions from happening during build.  This saves a lot of time when
573    you're repeatedly compiling-running-crashing.  This (1) doesn't
574    garbage-collect after loading each file during dumping, and (2)
575    doesn't automatically rebuild the DOC file. (Remove it by hand to
576    get it rebuilt.)
577  */
578 #undef QUICK_BUILD
579
580 /* Defined by AC_C_CONST in configure.in */
581 #undef const
582
583 /* Allow the source to use standard types. Include these before the
584  s&m files so that they can use them. */
585 #undef ssize_t
586 #undef size_t
587 #undef pid_t
588 #undef mode_t
589 #undef off_t
590 #undef uid_t
591 #undef gid_t
592 #undef socklen_t
593
594 /* If defined, use unions instead of ints.  A few systems (DEC Alpha)
595    seem to require this, probably because something with the int
596    definitions isn't right with 64-bit systems.  */
597 #undef USE_UNION_TYPE
598
599 /* The configuration script may define `opsysfile' to be the name of
600    the s/...h file that describes your operating system.
601    The file name is chosen based on the configuration name. */
602
603 #if defined (__cplusplus) && !defined (NOT_C_CODE)
604 extern "C" {
605 #endif
606
607 #undef config_opsysfile
608 #ifdef config_opsysfile
609 #include config_opsysfile
610 #endif
611
612 /* The configuration script may define `machfile' to be the name of
613    the m/...h file that describes the machine you are using.
614    The file name is chosen based on the configuration name. */
615
616 #undef config_machfile
617 #ifdef config_machfile
618 #include config_machfile
619 #endif
620
621 #if defined (__cplusplus) && !defined (NOT_C_CODE)
622 }
623 #endif
624
625 #if defined (USE_SYSTEM_MALLOC) && !defined (SYSTEM_MALLOC)
626 #define SYSTEM_MALLOC
627 #endif
628
629 /* Use the relocating allocator for buffer space? */
630 #undef REL_ALLOC
631
632 /* Define the return type of signal handlers if the s/xxx.h file
633    did not already do so. */
634 #define RETSIGTYPE void
635
636 /* SIGTYPE is the macro we actually use. */
637 #ifndef SIGTYPE
638 #define SIGTYPE RETSIGTYPE
639 #define SIGRETURN return
640 #endif
641
642 /* Define DYNODUMP if it is necessary to properly dump on this system.
643    Currently this is only Solaris 2.x, for x < 6. */
644 #undef DYNODUMP
645
646 /* Compile in support for Sun Sparcworks/WorkShop? */
647 #undef SUNPRO
648
649 /* Sun SparcStations, SGI machines, and HP9000s700s have built-in
650    support for playing sound files. (On Suns, the sound support is
651    usually found in /usr/demo/SOUND - you may need to install the
652    "SUNWaudmo" package.) */
653 #undef HAVE_NATIVE_SOUND
654 /* Native sound may be provided via soundcard.h, in various directories */
655 #undef SOUNDCARD_H_FILE
656
657 /* Compile in support for NAS (Network Audio System)?
658    NAS_NO_ERROR_JUMP means that the NAS libraries don't include some
659    error handling changes. */
660 #undef HAVE_NAS_SOUND
661 #undef NAS_NO_ERROR_JUMP
662
663 /* Compile in support for ESD (Enlightened Sound Daemon)? */
664 #undef HAVE_ESD_SOUND
665
666 /* Compile in support for SunPro usage-tracking code? */
667 #undef USAGE_TRACKING
668
669 /* Compile in support for Tooltalk? */
670 #undef TOOLTALK
671 /* tt_c.h might be in "Tt" or "desktop" subdirectories */
672 #undef TT_C_H_FILE
673
674 /* Toolkits used by lwlib for various widgets... */
675 #undef LWLIB_USES_MOTIF
676 #undef LWLIB_USES_ATHENA
677 #undef LWLIB_MENUBARS_LUCID
678 #undef LWLIB_MENUBARS_MOTIF
679 #undef LWLIB_SCROLLBARS_LUCID
680 #undef LWLIB_SCROLLBARS_MOTIF
681 #undef LWLIB_SCROLLBARS_ATHENA
682 #undef LWLIB_SCROLLBARS_ATHENA3D
683 #undef LWLIB_DIALOGS_MOTIF
684 #undef LWLIB_DIALOGS_ATHENA
685 #undef LWLIB_DIALOGS_ATHENA3D
686 #undef LWLIB_TABS_LUCID
687 #undef LWLIB_WIDGETS_MOTIF
688 #undef LWLIB_WIDGETS_ATHENA
689 #undef HAVE_ATHENA_3D
690
691 /* Other things that can be disabled by configure. */
692 #undef HAVE_MENUBARS
693 #undef HAVE_SCROLLBARS
694 #undef HAVE_DIALOGS
695 #undef HAVE_TOOLBARS
696 #undef HAVE_WIDGETS
697
698
699 #if defined (HAVE_MENUBARS) || defined (HAVE_DIALOGS)
700 #define HAVE_POPUPS
701 #endif
702
703 /* If you are using SunOS 4.1.1 and X11r5, then you need this patch.
704    There is a stupid bug in the SunOS libc.a: two functions which X11r5
705    uses, mbstowcs() and wcstombs(), are unusable when programs are
706    statically linked (as XEmacs must be) because the static version of
707    libc.a contains the *dynamic* versions of these functions.  These
708    functions don't seem to be called when XEmacs is running, so it's
709    enough to define stubs for them.
710
711    This appears to be fixed in SunOS 4.1.2.
712
713    Also, SunOS 4.1.1 contains buggy versions of strcmp and strcpy that
714    sometimes reference memory past the end of the string, which can segv.
715    I don't know whether this has been fixed as of 4.1.2 or 4.1.3. */
716 #if defined (sparc) && !defined (USG)
717 #define OBJECTS_SYSTEM sunOS-fix.o strcmp.o strcpy.o
718 #endif
719
720 /* If you turn this flag on, it forces encapsulation in all
721 circumstances; this can be used to make sure things compile OK
722 on various systems. */
723 #undef DEBUG_ENCAPSULATION
724
725 /* basic system calls */
726
727 #if defined (INTERRUPTIBLE_IO) || defined (DEBUG_ENCAPSULATION)
728 # define ENCAPSULATE_READ
729 # define ENCAPSULATE_WRITE
730 #endif
731 #if defined (INTERRUPTIBLE_OPEN) || defined (MULE) || defined (DEBUG_ENCAPSULATION)
732 # define ENCAPSULATE_OPEN
733 #endif
734 #if defined (INTERRUPTIBLE_CLOSE) || defined (DEBUG_ENCAPSULATION)
735 # define ENCAPSULATE_CLOSE
736 #endif
737
738 /* stdio calls */
739
740 #if defined (INTERRUPTIBLE_IO) || defined (DEBUG_ENCAPSULATION)
741 # define ENCAPSULATE_FREAD
742 # define ENCAPSULATE_FWRITE
743 #endif
744 #if defined (INTERRUPTIBLE_OPEN) || defined (MULE) || defined (DEBUG_ENCAPSULATION)
745 # define ENCAPSULATE_FOPEN
746 #endif
747 #if defined (INTERRUPTIBLE_CLOSE) || defined (DEBUG_ENCAPSULATION)
748 # define ENCAPSULATE_FCLOSE
749 #endif
750
751 /* directory calls */
752
753 #if defined (MULE) || defined (DEBUG_ENCAPSULATION)
754 # define ENCAPSULATE_CHDIR
755 # define ENCAPSULATE_MKDIR
756 # define ENCAPSULATE_OPENDIR
757 # define ENCAPSULATE_CLOSEDIR
758 # define ENCAPSULATE_READDIR
759 # define ENCAPSULATE_RMDIR
760
761 /* file-information calls */
762
763 #ifdef HAVE_EACCESS
764 # define ENCAPSULATE_EACCESS
765 #endif
766 # define ENCAPSULATE_ACCESS
767 # define ENCAPSULATE_LSTAT
768 # define ENCAPSULATE_READLINK
769 # define ENCAPSULATE_STAT
770
771 /* file-manipulation calls */
772
773 # define ENCAPSULATE_CHMOD
774 # define ENCAPSULATE_CREAT
775 # define ENCAPSULATE_LINK
776 # define ENCAPSULATE_RENAME
777 # define ENCAPSULATE_SYMLINK
778 # define ENCAPSULATE_UNLINK
779 # define ENCAPSULATE_EXECVP
780 #endif /* defined (MULE) || defined (DEBUG_ENCAPSULATION) */
781
782 #ifdef HAVE_CANNA
783 #  define CANNA2
784 #  define CANNA_MULE
785 #  define CANNA_PURESIZE 0
786 #else  /* not CANNA */
787 #  define CANNA_PURESIZE 0
788 #endif /* not CANNA */
789
790 #if defined (HAVE_SOCKS) && !defined (DO_NOT_SOCKSIFY)
791 #define accept Raccept
792 #define bind Rbind
793 #define connect Rconnect
794 #define getsockname Rgetsockname
795 #define listen Rlisten
796 #endif /* HAVE_SOCKS && !DO_NOT_SOCKSIFY */
797
798 #undef SIZEOF_SHORT
799 #undef SIZEOF_INT
800 #undef SIZEOF_LONG
801 #undef SIZEOF_LONG_LONG
802 #undef SIZEOF_VOID_P
803
804 #ifndef BITS_PER_CHAR
805 #define BITS_PER_CHAR 8
806 #endif
807 #define SHORTBITS (SIZEOF_SHORT * BITS_PER_CHAR)
808 #define INTBITS (SIZEOF_INT * BITS_PER_CHAR)
809 #define LONGBITS (SIZEOF_LONG * BITS_PER_CHAR)
810 #define LONG_LONG_BITS (SIZEOF_LONG_LONG * BITS_PER_CHAR)
811 #define VOID_P_BITS (SIZEOF_VOID_P * BITS_PER_CHAR)
812
813 /* Use `INLINE_HEADER' to define inline functions in .h files.
814    Use `inline static' to define inline functions in .c files.
815    See the Internals manual for examples and more information. */
816
817 /* Does the keyword `inline' exist?  */
818 #undef inline
819
820 #if defined (__cplusplus) || ! defined (__GNUC__)
821 # define INLINE_HEADER inline static
822 #elif defined (DONT_EXTERN_INLINE_HEADER_FUNCTIONS)
823 # define INLINE_HEADER inline
824 #else
825 # define INLINE_HEADER inline extern
826 #endif
827
828 #ifndef NOT_C_CODE /* Actually means C or C++ */
829 # if defined (__cplusplus)
830 /* Avoid C++ keywords used as ordinary C identifiers */
831 #  define class c_class
832 #  define new   c_new
833 #  define this  c_this
834 #  define catch c_catch
835
836 #  define EXTERN_C extern "C"
837 # else /* C code */
838 #  define EXTERN_C extern
839 # endif
840 #endif /* C or C++ */
841
842 /* Strictly speaking, only int or unsigned int are valid types in a
843    bitfield.  In practice, we would like to use enums as bitfields.
844    The following should just result in warning avoidance:
845    warning: nonportable bit-field type */
846 #ifdef __GNUC__
847 #define enum_field(enumeration_type) enum enumeration_type
848 #else
849 #define enum_field(enumeration_type) unsigned int
850 #endif
851
852 /* We want to avoid saving the signal mask if possible, because
853    that necessitates a system call. */
854 #ifdef HAVE_SIGSETJMP
855 # define SETJMP(x) sigsetjmp (x, 0)
856 # define LONGJMP(x, y) siglongjmp (x, y)
857 # define JMP_BUF sigjmp_buf
858 #else
859 # define SETJMP(x) setjmp (x)
860 # define LONGJMP(x, y) longjmp (x, y)
861 # define JMP_BUF jmp_buf
862 #endif
863
864 /* movemail options */
865 /* Should movemail use POP3 for mail access? */
866 #undef MAIL_USE_POP
867 /* Should movemail use kerberos for POP authentication? */
868 #undef KERBEROS
869 /* Should movemail use hesiod for getting POP server host? */
870 #undef HESIOD
871 /* Determine type of mail locking. */
872 #undef MAIL_LOCK_LOCKF
873 #undef MAIL_LOCK_FLOCK
874 #undef MAIL_LOCK_DOT
875 #undef MAIL_LOCK_LOCKING
876 #undef MAIL_LOCK_MMDF
877
878 #undef PREFIX_USER_DEFINED
879 #undef EXEC_PREFIX_USER_DEFINED
880 #undef MODULEDIR_USER_DEFINED
881 #undef SITEMODULEDIR_USER_DEFINED
882 #undef DOCDIR_USER_DEFINED
883 #undef LISPDIR_USER_DEFINED
884 #undef PACKAGE_PATH_USER_DEFINED
885 #undef SITELISPDIR_USER_DEFINED
886 #undef ARCHLIBDIR_USER_DEFINED
887 #undef ETCDIR_USER_DEFINED
888 #undef INFODIR_USER_DEFINED
889 #undef INFOPATH_USER_DEFINED
890
891 #undef PDUMP
892
893 #endif /* _SRC_CONFIG_H_ */