aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSteven Tamm2004-10-08 18:38:17 +0000
committerSteven Tamm2004-10-08 18:38:17 +0000
commitf7f3a65fc0ce84e01d404230782619edc2bc590a (patch)
treed510f8c22be722372a9d756f210ecb7d905f8db8 /src
parentcef11da29920a67e534b01241c47ee379926210e (diff)
downloademacs-f7f3a65fc0ce84e01d404230782619edc2bc590a.tar.gz
emacs-f7f3a65fc0ce84e01d404230782619edc2bc590a.zip
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
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog9
-rw-r--r--src/config.in9
-rw-r--r--src/mac.c1
-rw-r--r--src/unexmacosx.c5
4 files changed, 21 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 2777a1b9218..131586c4e8d 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,12 @@
12004-10-08 Steven Tamm <steventamm@mac.com>
2
3 * config.in (HAVE_MALLOC_MALLOC_H): Regenerate
4 * macterm.c (mac_check_for_quit_char): Remove warning for using
5 NULL where 0 should be used
6 * unexmacosx.c: Use malloc/malloc.h on Tiger instead of
7 objc/malloc.h
8 * mac.c: Include time.h for Tiger compatibility
9
12004-10-07 Kim F. Storm <storm@cua.dk> 102004-10-07 Kim F. Storm <storm@cua.dk>
2 11
3 * xdisp.c (redisplay_window): Fix flicker on vertical line between 12 * xdisp.c (redisplay_window): Fix flicker on vertical line between
diff --git a/src/config.in b/src/config.in
index cc37606b713..49095ca4e5a 100644
--- a/src/config.in
+++ b/src/config.in
@@ -352,6 +352,9 @@ Boston, MA 02111-1307, USA. */
352/* Define to 1 if you have the <maillock.h> header file. */ 352/* Define to 1 if you have the <maillock.h> header file. */
353#undef HAVE_MAILLOCK_H 353#undef HAVE_MAILLOCK_H
354 354
355/* Define to 1 if you have the <malloc/malloc.h> header file. */
356#undef HAVE_MALLOC_MALLOC_H
357
355/* Define to 1 if you have the `mblen' function. */ 358/* Define to 1 if you have the `mblen' function. */
356#undef HAVE_MBLEN 359#undef HAVE_MBLEN
357 360
@@ -754,9 +757,9 @@ Boston, MA 02111-1307, USA. */
754/* If using the C implementation of alloca, define if you know the 757/* If using the C implementation of alloca, define if you know the
755 direction of stack growth for your system; otherwise it will be 758 direction of stack growth for your system; otherwise it will be
756 automatically deduced at run-time. 759 automatically deduced at run-time.
757 STACK_DIRECTION > 0 => grows toward higher addresses 760 STACK_DIRECTION > 0 => grows toward higher addresses
758 STACK_DIRECTION < 0 => grows toward lower addresses 761 STACK_DIRECTION < 0 => grows toward lower addresses
759 STACK_DIRECTION = 0 => direction of growth unknown */ 762 STACK_DIRECTION = 0 => direction of growth unknown */
760#undef STACK_DIRECTION 763#undef STACK_DIRECTION
761 764
762/* Define to 1 if you have the ANSI C header files. */ 765/* Define to 1 if you have the ANSI C header files. */
diff --git a/src/mac.c b/src/mac.c
index 9740b3bf3f4..f7e96b9c146 100644
--- a/src/mac.c
+++ b/src/mac.c
@@ -24,6 +24,7 @@ Boston, MA 02111-1307, USA. */
24 24
25#include <stdio.h> 25#include <stdio.h>
26#include <errno.h> 26#include <errno.h>
27#include <time.h>
27#include <utime.h> 28#include <utime.h>
28#include <dirent.h> 29#include <dirent.h>
29#include <sys/types.h> 30#include <sys/types.h>
diff --git a/src/unexmacosx.c b/src/unexmacosx.c
index b41c586d2e0..1f2b4c96620 100644
--- a/src/unexmacosx.c
+++ b/src/unexmacosx.c
@@ -99,7 +99,12 @@ Boston, MA 02111-1307, USA. */
99#if defined (__ppc__) 99#if defined (__ppc__)
100#include <mach-o/ppc/reloc.h> 100#include <mach-o/ppc/reloc.h>
101#endif 101#endif
102#if defined (HAVE_MALLOC_MALLOC_H)
103#include <malloc/malloc.h>
104#else
102#include <objc/malloc.h> 105#include <objc/malloc.h>
106#endif
107
103 108
104#define VERBOSE 1 109#define VERBOSE 1
105 110