summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ChangeLog5
-rw-r--r--src/Makefile.in5
-rw-r--r--src/s/gnu.h2
3 files changed, 9 insertions, 3 deletions
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 <dann@ics.uci.edu>
+
+ * Makefile.in (STARTFILES): Conditionally define to make the usage clear.
+ * s/gnu.h (START_FILES): Remove empty definition.
+
2010-05-06 Jan Djärv <jan.h.d@swipnet.se>
* 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 <http://www.gnu.org/licenses/>. */
#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