blob: ea2ae95b25ad37dcaa37cd2dda701e80ca408ca3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
Here are some of the cpp macros used, together with some short explanation
of their use. Feel free to add more macros and more categories.
** Distinguishing OSes **
MAC_OS Compiling for some version of Mac OS?
MAC_OS8 Compiling for Mac OS version 8. Requires MAC_OS?
MAC_OSX Compiling for Mac OS X? Is that also valid for Darwin?
MAC_OS_X ?? Apparently only used once in mac.c.
CYGWIN Compiling the Cygwin port.
__CYGWIN__ Ditto
MSDOS Compiling the MS-DOS port.
__MSDOS__ Ditto.
__DJGPP__ Major version number of the DJGPP library for the DOS port.
__DJGPP_MINOR__ Minor version number of the DJGPP library.
__GO32__ Compiling the DOS port with DJGPP v1.x (obsolete).
DOS_NT Compiling for either the MS-DOS or native MS-Windows port.
WINDOWSNT Compiling the native MS-Windows (W32) port.
__MINGW32__ Compiling the W32 port with the MinGW port of GCC.
_MSC_VER Compiling the W32 port with the Microsoft C compiler.
** Distinguishing GUIs **
HAVE_NTGUI Use the native W32 GUI for windows, frames, menus&scrollbars.
HAVE_CARBON Compile support for the Carbon GUI. Requires MAC_OS?
HAVE_X11 Compile support for the X11 GUI.
HAVE_X_WINDOWS Compile support for X Window system
X11 ?? Makefile.in suggests it's equivalent to HAVE_X11
USE_LUCID Use the Lucid toolkit for menus&scrollbars. Requires HAVE_X11.
USE_MOTIF Use the Motif toolkit for menus&scrollbars. Requires HAVE_X11.
USE_GTK Use the Gtk toolkit for menus&scrollbars. Requires HAVE_X11.
** Frame types **
FRAME_TERMCAP_P A tty (character terminal) frame.
FRAME_X_P A frame on X Window system.
FRAME_MSDOS_P An MS-DOS frame (used only by the DOS port).
FRAME_MAC_P A Mac frame.
FRAME_W32_P A frame using native MS-Windows GUI.
FRAME_WINDOW_P A GUI frame (like X, w32, etc.)
** Compile-time options **
REL_ALLOC Compile in the relocatable memory allocator ralloc.c.
SYSTEM_MALLOC Use the system library's malloc.
** Temporarily put defines from removed files here **
ADJUST_EXEC_HEADER
BSD4_2
BSD_PGRPS
BSD_SYSTEM
BSTRING
CANNOT_DUMP
CLASH_DETECTION
COFF
CRT0_DUMMIES
EXPLICIT_SIGN_EXTEND
FIRST_PTY_LETTER
HAVE_PTYS
HAVE_SOCKETS
HAVE_SYSVIPC
HAVE_TERMIO
HAVE_UNION_WAIT
INTERRUPT_INPUT
KERNEL_FILE
LDAV_SYMBOL
LIBS_DEBUG
LOAD_AVE_CVT
LOAD_AVE_TYPE
MAIL_USE_FLOCK
MASSC_REGISTER_BUG
NOMULTIPLEJOBS
NONSYSTEM_DIR_LIBRARY
NO_ARG_ARRAY
NO_REMAP
NO_UNION_TYPE
PTY_NAME_SPRINTF
PTY_TTY_NAME_SPRINTF
RTU
SYSTEM_TYPE
VIRT_ADDR_VARIES
WORDS_BIG_ENDIAN
WORD_MACHINE
m68000
subprocesses
# arch-tag: bc80061a-1168-4911-9766-46aaf2640250
|