From: Yang Guo Date: Wed, 11 Feb 2015 14:32:15 +0000 (+0100) Subject: Fix shared library build. X-Git-Tag: upstream/4.7.83~4459 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d59202c143668ee2cc68b8ba92d0e5b0993593f3;p=platform%2Fupstream%2Fv8.git Fix shared library build. TBR=vogelheim@chromium.org Review URL: https://codereview.chromium.org/913173002 Cr-Commit-Position: refs/heads/master@{#26581} --- diff --git a/src/d8.cc b/src/d8.cc index 246c17f..953a375 100644 --- a/src/d8.cc +++ b/src/d8.cc @@ -66,6 +66,10 @@ #define DCHECK(condition) assert(condition) #endif +#ifndef CHECK +#define CHECK(condition) assert(condition) +#endif + namespace v8 {