From: Bryan Alger Date: Thu, 1 May 2014 05:41:23 +0000 (-0700) Subject: Fix for Android importing folly/Random.cpp X-Git-Tag: v0.22.0~569 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5992ca78fa8446907add3263fcb40801d46c1e77;p=folly.git Fix for Android importing folly/Random.cpp Summary: ext/random causes issues building on android Test Plan: compiled on fbandroid Reviewed By: bmaurer@fb.com FB internal diff: D1308224 --- diff --git a/folly/Random.cpp b/folly/Random.cpp index e69a4452..a2c04df3 100644 --- a/folly/Random.cpp +++ b/folly/Random.cpp @@ -22,7 +22,7 @@ #include #include -#if __GNUC_PREREQ(4, 8) +#if __GNUC_PREREQ(4, 8) && !defined(ANDROID) #include #define USE_SIMD_PRNG #endif