From 205b5ac6edd63988309290ac15e69775f3b3f564 Mon Sep 17 00:00:00 2001 From: Ted Mielczarek Date: Tue, 12 Apr 2016 14:55:18 -0400 Subject: Fix a dependency issue in automake Doing a `make -jN check` from a fresh build breaks (and has probably been broken for a while). linux_client_unittest_shlib is missing $(TEST_LIBS) from its _DEPENDENCIES. The automake manual says if _DEPENDENCIES are not specified they'll be computed from _LDADD, but we are specifying it and just leaving out $(TEST_LIBS). R=vapier@chromium.org BUG= Review URL: https://codereview.chromium.org/1870733005 . --- src/config.h.in | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/config.h.in b/src/config.h.in index 1db01593..ee6a67ad 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -3,6 +3,9 @@ /* Define to 1 if you have the header file. */ #undef HAVE_A_OUT_H +/* define if the compiler supports basic C++11 syntax */ +#undef HAVE_CXX11 + /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H -- cgit v1.2.1