diff options
| author | Steven Tamm | 2004-03-14 18:43:56 +0000 |
|---|---|---|
| committer | Steven Tamm | 2004-03-14 18:43:56 +0000 |
| commit | 9062aa89280313141eb171c2842f5c9e81b6a781 (patch) | |
| tree | 6f878985da90b9a738dc8f1f88e0d66bfa9f6fba /src | |
| parent | e61d86f7b97b771a217961775b53acc568ffcdee (diff) | |
| download | emacs-9062aa89280313141eb171c2842f5c9e81b6a781.tar.gz emacs-9062aa89280313141eb171c2842f5c9e81b6a781.zip | |
* Makefile.in (XMENU_OBJ): Do not include xmenu.o if
HAVE_CARBON is defined.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 52709b8f3b0..ed93c0fdb7c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2004-03-14 Steven Tamm <steventamm@mac.com> | ||
| 2 | |||
| 3 | * Makefile.in (XMENU_OBJ): Do not include xmenu.o if | ||
| 4 | HAVE_CARBON is defined. | ||
| 5 | |||
| 1 | 2004-03-14 Kim F. Storm <storm@cua.dk> | 6 | 2004-03-14 Kim F. Storm <storm@cua.dk> |
| 2 | 7 | ||
| 3 | * dispextern.h (x_find_image_file): Add prototype. | 8 | * dispextern.h (x_find_image_file): Add prototype. |
diff --git a/src/Makefile.in b/src/Makefile.in index b637f75af0b..678e4f89f44 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -449,7 +449,7 @@ LIBX= $(LIBXMENU) $(X11_LDFLAGS) $(LIBXT) LIBTIFF LIBJPEG LIBPNG LIBGIF LIBXPM L | |||
| 449 | LIBX= $(LIBXMENU) LD_SWITCH_X_SITE -lX10 LIBX10_MACHINE LIBX10_SYSTEM | 449 | LIBX= $(LIBXMENU) LD_SWITCH_X_SITE -lX10 LIBX10_MACHINE LIBX10_SYSTEM |
| 450 | #endif /* not HAVE_X11 */ | 450 | #endif /* not HAVE_X11 */ |
| 451 | #else /* not HAVE_X_WINDOWS */ | 451 | #else /* not HAVE_X_WINDOWS */ |
| 452 | #ifdef HAVE_MENUS | 452 | #if defined(HAVE_MENUS) && !defined(HAVE_CARBON) |
| 453 | XMENU_OBJ = xmenu.o | 453 | XMENU_OBJ = xmenu.o |
| 454 | #endif | 454 | #endif |
| 455 | #endif /* not HAVE_X_WINDOWS */ | 455 | #endif /* not HAVE_X_WINDOWS */ |