summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Porter <mporter@konsulko.com>2017-12-11 08:58:05 -0500
committerMatt Porter <mporter@konsulko.com>2017-12-11 19:20:45 -0500
commitc2a0f015ef6cae027881deae693b49e413595e64 (patch)
treec17f6e01aebdf7a0ea7bb0aae4ca2035d24bd9db
parent2eaa66f2355ba99d36c583460223bd3ebc3730aa (diff)
glog: remove krogoth related appends
This append is required for krogoth related builds so drop this. Change-Id: I2fd4fb324259e6e010eb104d4ecec6803b451a19 Signed-off-by: Matt Porter <mporter@konsulko.com>
-rw-r--r--meta-rcar-gen3-adas/recipes-support/glog/glog-0.3.3/0001-Use-pkg-config-for-locating-gflags-and-gmock.patch44
-rw-r--r--meta-rcar-gen3-adas/recipes-support/glog/glog_0.3.3.bbappend5
2 files changed, 0 insertions, 49 deletions
diff --git a/meta-rcar-gen3-adas/recipes-support/glog/glog-0.3.3/0001-Use-pkg-config-for-locating-gflags-and-gmock.patch b/meta-rcar-gen3-adas/recipes-support/glog/glog-0.3.3/0001-Use-pkg-config-for-locating-gflags-and-gmock.patch
deleted file mode 100644
index 7208bfe..0000000
--- a/meta-rcar-gen3-adas/recipes-support/glog/glog-0.3.3/0001-Use-pkg-config-for-locating-gflags-and-gmock.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-From ca8570bad0bbefb450a2cbe40c17eb5a5565f829 Mon Sep 17 00:00:00 2001
-From: Petr Nechaev <petr.nechaev@cogentembedded.com>
-Date: Wed, 22 Nov 2017 00:21:45 +0300
-Subject: [PATCH 1/1] Use pkg-config for locating gflags and gmock
-
-Binaries gflags-config and gmock-config are not generated during
-cross-compilation of gflags and gmock so use pkg-config instead.
----
- configure.ac | 14 ++++++++------
- 1 file changed, 8 insertions(+), 6 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 8b458fa..16a6c7e 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -138,17 +138,19 @@ LIBS="$SAVE_LIBS"
- # TODO(hamaji): Use official m4 macros provided by testing libraries
- # once the m4 macro of Google Mocking becomes ready.
- # Check if there is Google Test library installed.
--AC_CHECK_PROG(GTEST_CONFIG, gtest-config, "yes")
-+# Use pkg-config instead of gtest-config with Yocto
-+AC_CHECK_PROG(GTEST_CONFIG, pkg-config, "yes")
- if test x"$GTEST_CONFIG" = "xyes"; then
-- GTEST_CFLAGS=`gtest-config --cppflags --cxxflags`
-- GTEST_LIBS=`gtest-config --ldflags --libs`
-+ GTEST_CFLAGS=`pkg-config --cppflags --cxxflags gtest`
-+ GTEST_LIBS=`pkg-config --libs gtest`
- AC_DEFINE(HAVE_LIB_GTEST, 1, [define if you have google gtest library])
-
- # Check if there is Google Mocking library installed.
-- AC_CHECK_PROG(GMOCK_CONFIG, gmock-config, "yes")
-+ # Use pkg-config instead of gmock-config with Yocto
-+ AC_CHECK_PROG(GMOCK_CONFIG, pkg-config, "yes")
- if test x"$GMOCK_CONFIG" = "xyes"; then
-- GMOCK_CFLAGS=`gmock-config --cppflags --cxxflags`
-- GMOCK_LIBS=`gmock-config --ldflags --libs`
-+ GMOCK_CFLAGS=`pkg-config --cppflags --cxxflags gmock`
-+ GMOCK_LIBS=`pkg-config --libs gmock`
- AC_DEFINE(HAVE_LIB_GMOCK, 1, [define if you have google gmock library])
- else
- # We don't run test cases which use Google Mocking framework.
---
-2.9.5
-
diff --git a/meta-rcar-gen3-adas/recipes-support/glog/glog_0.3.3.bbappend b/meta-rcar-gen3-adas/recipes-support/glog/glog_0.3.3.bbappend
deleted file mode 100644
index d882ba3..0000000
--- a/meta-rcar-gen3-adas/recipes-support/glog/glog_0.3.3.bbappend
+++ /dev/null
@@ -1,5 +0,0 @@
-FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}-${PV}:"
-
-SRC_URI_append = " file://0001-Use-pkg-config-for-locating-gflags-and-gmock.patch"
-
-DEPENDS += "gflags gmock"