From: Dan Nicolaescu Date: Thu, 6 May 2010 16:18:33 +0000 (-0700) Subject: * Makefile.in (STARTFILES): Conditionally define to make the usage clear. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~257 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d43c06d68b82703ced7f2624245d8b45fd3c01fd;p=emacs.git * Makefile.in (STARTFILES): Conditionally define to make the usage clear. * s/gnu.h (START_FILES): Remove empty definition. --- diff --git a/src/ChangeLog b/src/ChangeLog index 889c261f204..fca76174d33 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2010-05-06 Dan Nicolaescu + + * Makefile.in (STARTFILES): Conditionally define to make the usage clear. + * s/gnu.h (START_FILES): Remove empty definition. + 2010-05-06 Jan Djärv * xterm.c (x_draw_image_relief): Move declaration of extra to beginning. diff --git a/src/Makefile.in b/src/Makefile.in index 08c205f0def..bd7b5a83585 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -212,8 +212,11 @@ DEPFLAGS = -MMD -MF deps/$*.d #define LD_SWITCH_X_SITE #endif +#ifdef START_FILES STARTFILES = START_FILES - +#else +STARTFILES = +#endif #ifdef NS_IMPL_GNUSTEP /* Pull in stuff from GNUstep-make. */ diff --git a/src/s/gnu.h b/src/s/gnu.h index 946eaa6512b..bf68cabe051 100644 --- a/src/s/gnu.h +++ b/src/s/gnu.h @@ -44,8 +44,6 @@ along with GNU Emacs. If not, see . */ #define ORDINARY_LINK #define DATA_START ({ extern int data_start; (char *) &data_start; }) -#define START_FILES - /* Some losing code fails to include this and then assumes that because it is braindead that O_RDONLY==0. */ #ifndef NOT_C_CODE