diff options
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2005-03-04 11:09:33 +0000 |
---|---|---|
committer | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2005-03-04 11:09:33 +0000 |
commit | 04b5475bff56f8c57c6c4fe04d4e9b4555f53d26 (patch) | |
tree | 26a3e52d628366c031997578cfd8b0cc15f9d962 /src/macmenu.c | |
parent | 24972bf6f1d75a2fc2987460eea09f858c26306e (diff) | |
download | emacs-04b5475bff56f8c57c6c4fe04d4e9b4555f53d26.tar.gz emacs-04b5475bff56f8c57c6c4fe04d4e9b4555f53d26.tar.bz2 emacs-04b5475bff56f8c57c6c4fe04d4e9b4555f53d26.zip |
[TARGET_API_MAC_CARBON]: Don't include headers that are included via
Carbon.h.
Diffstat (limited to 'src/macmenu.c')
-rw-r--r-- | src/macmenu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/macmenu.c b/src/macmenu.c index f0696a49774..35615cc3796 100644 --- a/src/macmenu.c +++ b/src/macmenu.c @@ -35,7 +35,7 @@ Boston, MA 02111-1307, USA. */ #include "charset.h" #include "coding.h" -#ifndef MAC_OSX +#if !TARGET_API_MAC_CARBON #include <MacTypes.h> #include <Menus.h> #include <QuickDraw.h> @@ -47,7 +47,7 @@ Boston, MA 02111-1307, USA. */ #if defined (__MRC__) || (__MSL__ >= 0x6000) #include <ControlDefinitions.h> #endif -#endif /* not MAC_OSX */ +#endif /* not TARGET_API_MAC_CARBON */ /* This may include sys/types.h, and that somehow loses if this is not done before the other system files. */ |