Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 Feb 2013 18:28:26 +0000 (UTC)
From:      Ulrich Spoerlein <uqs@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r247006 - head/usr.bin/dtc
Message-ID:  <201302191828.r1JISQX4038968@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: uqs
Date: Tue Feb 19 18:28:25 2013
New Revision: 247006
URL: http://svnweb.freebsd.org/changeset/base/247006

Log:
  dtc: fix bootstrapping from 8.2-STABLE
  
  MFC after:	1 week
  Approved by:	theraven

Modified:
  head/usr.bin/dtc/input_buffer.cc

Modified: head/usr.bin/dtc/input_buffer.cc
==============================================================================
--- head/usr.bin/dtc/input_buffer.cc	Tue Feb 19 18:22:25 2013	(r247005)
+++ head/usr.bin/dtc/input_buffer.cc	Tue Feb 19 18:28:25 2013	(r247006)
@@ -43,6 +43,10 @@
 #include <sys/mman.h>
 #include <assert.h>
 
+#ifndef MAP_PREFAULT_READ
+#define MAP_PREFAULT_READ 0
+#endif
+
 namespace dtc
 {
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302191828.r1JISQX4038968>