]> git.eshelyaron.com Git - emacs.git/commitdiff
* Makefile.in (STARTFILES): Conditionally define to make the usage clear.
authorDan Nicolaescu <dann@ics.uci.edu>
Thu, 6 May 2010 16:18:33 +0000 (09:18 -0700)
committerDan Nicolaescu <dann@ics.uci.edu>
Thu, 6 May 2010 16:18:33 +0000 (09:18 -0700)
* s/gnu.h (START_FILES): Remove empty definition.

src/ChangeLog
src/Makefile.in
src/s/gnu.h

index 889c261f204b761c1aabceb30d85dd2a616e2a65..fca76174d33666d6ec7a788b89749a579e26e6a5 100644 (file)
@@ -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.
index 08c205f0defbb8cff3dd6c8a456c4760b97adc0e..bd7b5a835850b4bda70b9a2ab697a8ba6ed3bf92 100644 (file)
@@ -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. */
index 946eaa6512bd1acf7f6d6f070c95d8960fa5eb30..bf68cabe05122200cade676b62ffc298dc036d05 100644 (file)
@@ -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