You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@quickstep.apache.org by zu...@apache.org on 2018/10/23 02:31:54 UTC

incubator-quickstep git commit: Fix glog build issue for Mac OS X 10.14.

Repository: incubator-quickstep
Updated Branches:
  refs/heads/master f5c84fd6c -> 468f2a6aa


Fix glog build issue for Mac OS X 10.14.


Project: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/commit/468f2a6a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/tree/468f2a6a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/diff/468f2a6a

Branch: refs/heads/master
Commit: 468f2a6aaffd7defc742c4cfb9e8b14a09dd540e
Parents: f5c84fd
Author: Zuyu Zhang <zu...@cs.wisc.edu>
Authored: Mon Oct 22 21:31:29 2018 -0500
Committer: Zuyu Zhang <zu...@cs.wisc.edu>
Committed: Mon Oct 22 21:31:29 2018 -0500

----------------------------------------------------------------------
 CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/468f2a6a/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 434019e..f66a51a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -320,7 +320,7 @@ else()
   # builds to fail. As a short-term workaround for now, we turn off deprecated
   # warnings so that they do not cause build failures anymore.
   # TODO: Remove this workaround by fixing the protobuf_cmake and glog_cmake.
-  if (${CMAKE_SYSTEM} MATCHES "Darwin-1[67].[0-9]*.[0-9]*")
+  if (${CMAKE_SYSTEM} MATCHES "Darwin-1[678].[0-9]*.[0-9]*")
     if (${CMAKE_CXX_COMPILER_ID} MATCHES "Clang")
       CHECK_CXX_COMPILER_FLAG("-Wno-error=deprecated-declarations" COMPILER_HAS_WNO_DEPRECATED)
       if (COMPILER_HAS_WNO_DEPRECATED)