Repository: incubator-singa Updated Branches: refs/heads/master 87a550f87 -> 9baa90a5d
fix bugs in configure ac Project: http://git-wip-us.apache.org/repos/asf/incubator-singa/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-singa/commit/9baa90a5 Tree: http://git-wip-us.apache.org/repos/asf/incubator-singa/tree/9baa90a5 Diff: http://git-wip-us.apache.org/repos/asf/incubator-singa/diff/9baa90a5 Branch: refs/heads/master Commit: 9baa90a5d46a6a1e8d52d81e03357072cc9c9708 Parents: 87a550f Author: xiezl <[email protected]> Authored: Wed May 6 16:53:47 2015 +0800 Committer: xiezl <[email protected]> Committed: Wed May 6 16:53:47 2015 +0800 ---------------------------------------------------------------------- configure.ac | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-singa/blob/9baa90a5/configure.ac ---------------------------------------------------------------------- diff --git a/configure.ac b/configure.ac index 9c34304..d9b6034 100644 --- a/configure.ac +++ b/configure.ac @@ -6,6 +6,7 @@ AC_INIT(singa, 0.0.1, [email protected]) AC_CONFIG_SRCDIR([src/utils/common.cc]) AC_CONFIG_HEADER([config.h]) AM_INIT_AUTOMAKE([subdir-objects]) +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) ACLOCAL_AMFLAGS = -I m4 --install # Checks for programs. @@ -38,16 +39,6 @@ AC_CHECK_LIB([opencv_highgui], [main], [], [ AC_CHECK_LIB([opencv_core], [main], [], [ AC_MSG_ERROR([unable to find the opencv_core]) ]) - -#AC_SEARCH_LIBS([google_InitGoogleLogging], [glog], [], [ -# AC_MSG_ERROR([unable to find the InitGoogleLogging() function]) -# ]) -#AC_SEARCH_LIBS([ParseCommandLineFlags], [gflags], [], [ -# AC_MSG_ERROR([unable to find the ParseCommandLineFlags() function]) -# ]) -#AC_SEARCH_LIBS([DebugString], [protobuf], [], [ -# AC_MSG_ERROR([unable to find the DebugString() function]) -# ]) AC_SEARCH_LIBS([mdb_env_create], [lmdb], [], [ AC_MSG_ERROR([unable to find the mdb_env_create() function]) ])
