diff options
| author | Adrian Robert | 2008-08-04 14:39:27 +0000 |
|---|---|---|
| committer | Adrian Robert | 2008-08-04 14:39:27 +0000 |
| commit | 14145fa3d03d61fec15d5939b5c4417c9d6472d9 (patch) | |
| tree | 3720d80ab307127573cb2f685536a2e1c570198e /admin | |
| parent | d7982012851b8772c623287a11aa497e15ac6c3d (diff) | |
| download | emacs-14145fa3d03d61fec15d5939b5c4417c9d6472d9.tar.gz emacs-14145fa3d03d61fec15d5939b5c4417c9d6472d9.zip | |
cleanup in s/darwin.h, define DARWIN_OS and use it instead of DARWIN and/or MAC_OSX; also, nsterm.m: small unrelated cleanups
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/CPP-DEFINES | 5 | ||||
| -rw-r--r-- | admin/ChangeLog | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/admin/CPP-DEFINES b/admin/CPP-DEFINES index 564c48e3f42..39243d7ccef 100644 --- a/admin/CPP-DEFINES +++ b/admin/CPP-DEFINES | |||
| @@ -14,12 +14,12 @@ DOS_NT Compiling for either the MS-DOS or native MS-Windows port. | |||
| 14 | WINDOWSNT Compiling the native MS-Windows (W32) port. | 14 | WINDOWSNT Compiling the native MS-Windows (W32) port. |
| 15 | __MINGW32__ Compiling the W32 port with the MinGW port of GCC. | 15 | __MINGW32__ Compiling the W32 port with the MinGW port of GCC. |
| 16 | _MSC_VER Compiling the W32 port with the Microsoft C compiler. | 16 | _MSC_VER Compiling the W32 port with the Microsoft C compiler. |
| 17 | USE_LISP_UNION_TYPE Define it in lisp.h to make Lisp_Object be a union type instead of the default int. | 17 | DARWIN_OS Compiling on Mac OS X or pure Darwin (and using s/darwin.h). |
| 18 | 18 | ||
| 19 | ** Distinguishing GUIs ** | 19 | ** Distinguishing GUIs ** |
| 20 | 20 | ||
| 21 | HAVE_NTGUI Use the native W32 GUI for windows, frames, menus&scrollbars. | 21 | HAVE_NTGUI Use the native W32 GUI for windows, frames, menus&scrollbars. |
| 22 | HAVE_NS Use the NeXT/OpenStep/Cocoa UI under Mac OS X or GNUstep. | 22 | HAVE_NS Use the NeXT/OpenStep/Cocoa UI under Mac OS X or GNUstep. |
| 23 | NS_IMPL_GNUSTEP Compile support for GNUSTEP implementation of NS GUI API. | 23 | NS_IMPL_GNUSTEP Compile support for GNUSTEP implementation of NS GUI API. |
| 24 | NS_IMPL_COCOA Compile support for Cocoa (Apple) implementation of NS GUI API. | 24 | NS_IMPL_COCOA Compile support for Cocoa (Apple) implementation of NS GUI API. |
| 25 | HAVE_X11 Compile support for the X11 GUI. | 25 | HAVE_X11 Compile support for the X11 GUI. |
| @@ -48,6 +48,7 @@ PROCATTR A function that returns attributes of a process. | |||
| 48 | REL_ALLOC Compile in the relocatable memory allocator ralloc.c. | 48 | REL_ALLOC Compile in the relocatable memory allocator ralloc.c. |
| 49 | SYSTEM_MALLOC Use the system library's malloc. | 49 | SYSTEM_MALLOC Use the system library's malloc. |
| 50 | subprocesses System can use subprocesses (for M-x shell for example). Defined by default, only MSDOS undefines it. | 50 | subprocesses System can use subprocesses (for M-x shell for example). Defined by default, only MSDOS undefines it. |
| 51 | USE_LISP_UNION_TYPE Define it in lisp.h to make Lisp_Object be a union type instead of the default int. | ||
| 51 | 52 | ||
| 52 | ** Replace, the definition is trivial: SWITCH_ENUM_CAST | 53 | ** Replace, the definition is trivial: SWITCH_ENUM_CAST |
| 53 | 54 | ||
diff --git a/admin/ChangeLog b/admin/ChangeLog index 3507b4ecf76..ce1a7f8bee0 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com> | ||
| 2 | |||
| 3 | * CPP_DEFINES: Add DARWIN_OS. Move USE_LISP_UNION_TYPE away from OS's. | ||
| 4 | |||
| 1 | 2008-08-02 Eli Zaretskii <eliz@gnu.org> | 5 | 2008-08-02 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * CPP-DEFINES: Add defines for accessing system processes. | 7 | * CPP-DEFINES: Add defines for accessing system processes. |