Date: Thu, 17 Dec 2009 12:42:45 +0000 (UTC) From: Stanislav Sedov <stas@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r200630 - head/usr.bin/make Message-ID: <200912171242.nBHCgjRF033801@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200912171242.nBHCgjRF033801>