svn commit: r200630 - head/usr.bin/make

Stanislav Sedov stas at FreeBSD.org
Thu Dec 17 12:42:45 UTC 2009


Author: stas
Date: Thu Dec 17 12:42:45 2009
New Revision: 200630
URL: http://svn.freebsd.org/changeset/base/200630

Log:
  - Partially revert r200417.  config.h brings several definitions,
    that appears to be actually used.  Without config.h included
    cross-build of world failed (at least for ARM).

Modified:
  head/usr.bin/make/arch.c
  head/usr.bin/make/make.c

Modified: head/usr.bin/make/arch.c
==============================================================================
--- head/usr.bin/make/arch.c	Thu Dec 17 12:27:54 2009	(r200629)
+++ head/usr.bin/make/arch.c	Thu Dec 17 12:42:45 2009	(r200630)
@@ -103,6 +103,7 @@ __FBSDID("$FreeBSD$");
 
 #include "arch.h"
 #include "buf.h"
+#include "config.h"
 #include "dir.h"
 #include "globals.h"
 #include "GNode.h"

Modified: head/usr.bin/make/make.c
==============================================================================
--- head/usr.bin/make/make.c	Thu Dec 17 12:27:54 2009	(r200629)
+++ head/usr.bin/make/make.c	Thu Dec 17 12:42:45 2009	(r200630)
@@ -73,6 +73,7 @@ __FBSDID("$FreeBSD$");
  */
 
 #include "arch.h"
+#include "config.h"
 #include "dir.h"
 #include "globals.h"
 #include "GNode.h"


More information about the svn-src-head mailing list