mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-03 02:31:03 -08:00
config.in (HAVE_MALLOC_MALLOC_H): Regenerate
macterm.c (mac_check_for_quit_char): Remove warning for using NULL where 0 should be used unexmacosx.c: Use malloc/malloc.h on Tiger instead of objc/malloc.h mac.c: Include time.h for Tiger compatibility
This commit is contained in:
parent
cef11da299
commit
f7f3a65fc0
4 changed files with 21 additions and 3 deletions
|
|
@ -1,3 +1,12 @@
|
|||
2004-10-08 Steven Tamm <steventamm@mac.com>
|
||||
|
||||
* config.in (HAVE_MALLOC_MALLOC_H): Regenerate
|
||||
* macterm.c (mac_check_for_quit_char): Remove warning for using
|
||||
NULL where 0 should be used
|
||||
* unexmacosx.c: Use malloc/malloc.h on Tiger instead of
|
||||
objc/malloc.h
|
||||
* mac.c: Include time.h for Tiger compatibility
|
||||
|
||||
2004-10-07 Kim F. Storm <storm@cua.dk>
|
||||
|
||||
* xdisp.c (redisplay_window): Fix flicker on vertical line between
|
||||
|
|
|
|||
|
|
@ -352,6 +352,9 @@ Boston, MA 02111-1307, USA. */
|
|||
/* Define to 1 if you have the <maillock.h> header file. */
|
||||
#undef HAVE_MAILLOCK_H
|
||||
|
||||
/* Define to 1 if you have the <malloc/malloc.h> header file. */
|
||||
#undef HAVE_MALLOC_MALLOC_H
|
||||
|
||||
/* Define to 1 if you have the `mblen' function. */
|
||||
#undef HAVE_MBLEN
|
||||
|
||||
|
|
@ -754,9 +757,9 @@ Boston, MA 02111-1307, USA. */
|
|||
/* If using the C implementation of alloca, define if you know the
|
||||
direction of stack growth for your system; otherwise it will be
|
||||
automatically deduced at run-time.
|
||||
STACK_DIRECTION > 0 => grows toward higher addresses
|
||||
STACK_DIRECTION < 0 => grows toward lower addresses
|
||||
STACK_DIRECTION = 0 => direction of growth unknown */
|
||||
STACK_DIRECTION > 0 => grows toward higher addresses
|
||||
STACK_DIRECTION < 0 => grows toward lower addresses
|
||||
STACK_DIRECTION = 0 => direction of growth unknown */
|
||||
#undef STACK_DIRECTION
|
||||
|
||||
/* Define to 1 if you have the ANSI C header files. */
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@ Boston, MA 02111-1307, USA. */
|
|||
|
||||
#include <stdio.h>
|
||||
#include <errno.h>
|
||||
#include <time.h>
|
||||
#include <utime.h>
|
||||
#include <dirent.h>
|
||||
#include <sys/types.h>
|
||||
|
|
|
|||
|
|
@ -99,7 +99,12 @@ Boston, MA 02111-1307, USA. */
|
|||
#if defined (__ppc__)
|
||||
#include <mach-o/ppc/reloc.h>
|
||||
#endif
|
||||
#if defined (HAVE_MALLOC_MALLOC_H)
|
||||
#include <malloc/malloc.h>
|
||||
#else
|
||||
#include <objc/malloc.h>
|
||||
#endif
|
||||
|
||||
|
||||
#define VERBOSE 1
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue