aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorAdrian Robert2008-08-04 14:39:27 +0000
committerAdrian Robert2008-08-04 14:39:27 +0000
commit14145fa3d03d61fec15d5939b5c4417c9d6472d9 (patch)
tree3720d80ab307127573cb2f685536a2e1c570198e /admin
parentd7982012851b8772c623287a11aa497e15ac6c3d (diff)
downloademacs-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-DEFINES5
-rw-r--r--admin/ChangeLog4
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.
14WINDOWSNT Compiling the native MS-Windows (W32) port. 14WINDOWSNT 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.
17USE_LISP_UNION_TYPE Define it in lisp.h to make Lisp_Object be a union type instead of the default int. 17DARWIN_OS Compiling on Mac OS X or pure Darwin (and using s/darwin.h).
18 18
19** Distinguishing GUIs ** 19** Distinguishing GUIs **
20 20
21HAVE_NTGUI Use the native W32 GUI for windows, frames, menus&scrollbars. 21HAVE_NTGUI Use the native W32 GUI for windows, frames, menus&scrollbars.
22HAVE_NS Use the NeXT/OpenStep/Cocoa UI under Mac OS X or GNUstep. 22HAVE_NS Use the NeXT/OpenStep/Cocoa UI under Mac OS X or GNUstep.
23NS_IMPL_GNUSTEP Compile support for GNUSTEP implementation of NS GUI API. 23NS_IMPL_GNUSTEP Compile support for GNUSTEP implementation of NS GUI API.
24NS_IMPL_COCOA Compile support for Cocoa (Apple) implementation of NS GUI API. 24NS_IMPL_COCOA Compile support for Cocoa (Apple) implementation of NS GUI API.
25HAVE_X11 Compile support for the X11 GUI. 25HAVE_X11 Compile support for the X11 GUI.
@@ -48,6 +48,7 @@ PROCATTR A function that returns attributes of a process.
48REL_ALLOC Compile in the relocatable memory allocator ralloc.c. 48REL_ALLOC Compile in the relocatable memory allocator ralloc.c.
49SYSTEM_MALLOC Use the system library's malloc. 49SYSTEM_MALLOC Use the system library's malloc.
50subprocesses System can use subprocesses (for M-x shell for example). Defined by default, only MSDOS undefines it. 50subprocesses System can use subprocesses (for M-x shell for example). Defined by default, only MSDOS undefines it.
51USE_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 @@
12008-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
12008-08-02 Eli Zaretskii <eliz@gnu.org> 52008-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.