You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2011/06/05 08:40:46 UTC

svn commit: r1131948 - /incubator/mesos/trunk/src/third_party/libprocess/config.hpp

Author: benh
Date: Sun Jun  5 06:40:46 2011
New Revision: 1131948

URL: http://svn.apache.org/viewvc?rev=1131948&view=rev
Log:
Fixed libprocess build issue for 32-bit Linux. Closes #78.

Modified:
    incubator/mesos/trunk/src/third_party/libprocess/config.hpp

Modified: incubator/mesos/trunk/src/third_party/libprocess/config.hpp
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/src/third_party/libprocess/config.hpp?rev=1131948&r1=1131947&r2=1131948&view=diff
==============================================================================
--- incubator/mesos/trunk/src/third_party/libprocess/config.hpp (original)
+++ incubator/mesos/trunk/src/third_party/libprocess/config.hpp Sun Jun  5 06:40:46 2011
@@ -29,4 +29,10 @@
 #endif
 #endif /* __APPLE__ */
 
+#ifdef __linux__
+#ifndef MAP_32BIT
+#define MAP_32BIT 0
+#endif
+#endif /* __linux__ */
+
 #endif /* CONFIG_HPP */