diff options
| author | Eli Zaretskii | 2007-12-14 12:41:12 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2007-12-14 12:41:12 +0000 |
| commit | 077e3aa88abcb13749b1de06409ae77c9c940c4b (patch) | |
| tree | ee6d0a73d9362731715779cb2605e1deaa6e6e43 /admin | |
| parent | 8a8ce986d7b489c672223c6c5fd0190e109ea600 (diff) | |
| download | emacs-077e3aa88abcb13749b1de06409ae77c9c940c4b.tar.gz emacs-077e3aa88abcb13749b1de06409ae77c9c940c4b.zip | |
Add more symbols.
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/CPP-DEFINES | 30 |
1 files changed, 25 insertions, 5 deletions
diff --git a/admin/CPP-DEFINES b/admin/CPP-DEFINES index 0490d89325e..56693064c98 100644 --- a/admin/CPP-DEFINES +++ b/admin/CPP-DEFINES | |||
| @@ -8,19 +8,39 @@ MAC_OS8 Compiling for Mac OS version 8. Requires MAC_OS? | |||
| 8 | MAC_OSX Compiling for Mac OS X? Is that also valid for Darwin? | 8 | MAC_OSX Compiling for Mac OS X? Is that also valid for Darwin? |
| 9 | MAC_OS_X ?? Apparently only used once in mac.c. | 9 | MAC_OS_X ?? Apparently only used once in mac.c. |
| 10 | CYGWIN Compiling the Cygwin port. | 10 | CYGWIN Compiling the Cygwin port. |
| 11 | MSDOS Compiling the MSDOS port. | 11 | __CYGWIN__ Ditto |
| 12 | DOS_NT Compiling for either the MSDOS or W32 port. | 12 | MSDOS Compiling the MS-DOS port. |
| 13 | WINDOWSNT Compiling the W32 port. | 13 | __MSDOS__ Ditto. |
| 14 | WINDOWS_NT ?? Only once in dispextern.h | 14 | __DJGPP__ Major version number of the DJGPP library for the DOS port. |
| 15 | __DJGPP_MINOR__ Minor version number of the DJGPP library. | ||
| 16 | __GO32__ Compiling the DOS port with DJGPP v1.x (obsolete). | ||
| 17 | DOS_NT Compiling for either the MS-DOS or native MS-Windows port. | ||
| 18 | WINDOWSNT Compiling the native MS-Windows (W32) port. | ||
| 19 | __MINGW32__ Compiling the W32 port with the MinGW port of GCC. | ||
| 20 | _MSC_VER Compiling the W32 port with the Microsoft C compiler. | ||
| 15 | 21 | ||
| 16 | ** Distinguishing GUIs ** | 22 | ** Distinguishing GUIs ** |
| 17 | 23 | ||
| 18 | HAVE_NTGUI Compile support for the W32 GUI. | 24 | HAVE_NTGUI Use the native W32 GUI for windows, frames, menus&scrollbars. |
| 19 | HAVE_CARBON Compile support for the Carbon GUI. Requires MAC_OS? | 25 | HAVE_CARBON Compile support for the Carbon GUI. Requires MAC_OS? |
| 20 | HAVE_X11 Compile support for the X11 GUI. | 26 | HAVE_X11 Compile support for the X11 GUI. |
| 27 | HAVE_X_WINDOWS Compile support for X Window system | ||
| 21 | X11 ?? Makefile.in suggests it's equivalent to HAVE_X11 | 28 | X11 ?? Makefile.in suggests it's equivalent to HAVE_X11 |
| 22 | USE_LUCID Use the Lucid toolkit for menus&scrollbars. Requires HAVE_X11. | 29 | USE_LUCID Use the Lucid toolkit for menus&scrollbars. Requires HAVE_X11. |
| 23 | USE_MOTIF Use the Motif toolkit for menus&scrollbars. Requires HAVE_X11. | 30 | USE_MOTIF Use the Motif toolkit for menus&scrollbars. Requires HAVE_X11. |
| 24 | USE_GTK Use the Gtk toolkit for menus&scrollbars. Requires HAVE_X11. | 31 | USE_GTK Use the Gtk toolkit for menus&scrollbars. Requires HAVE_X11. |
| 25 | 32 | ||
| 33 | ** Frame types ** | ||
| 34 | |||
| 35 | FRAME_TERMCAP_P A tty (character terminal) frame. | ||
| 36 | FRAME_X_P A frame on X Window system. | ||
| 37 | FRAME_MSDOS_P An MS-DOS frame (used only by the DOS port). | ||
| 38 | FRAME_MAC_P A Mac frame. | ||
| 39 | FRAME_W32_P A frame using native MS-Windows GUI. | ||
| 40 | FRAME_WINDOW_P A GUI frame (like X, w32, etc.) | ||
| 41 | |||
| 42 | ** Compile-time options ** | ||
| 43 | REL_ALLOC Compile in the relocatable memory allocator ralloc.c. | ||
| 44 | SYSTEM_MALLOC Use the system library's malloc. | ||
| 45 | |||
| 26 | # arch-tag: bc80061a-1168-4911-9766-46aaf2640250 | 46 | # arch-tag: bc80061a-1168-4911-9766-46aaf2640250 |