svn commit: r247006 - head/usr.bin/dtc

Ulrich Spoerlein uqs at FreeBSD.org
Tue Feb 19 18:28:26 UTC 2013


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
 {
 


More information about the svn-src-all mailing list