diff options
author | Eneas U de Queiroz <cote2004-github@yahoo.com> | 2018-12-07 17:02:05 -0200 |
---|---|---|
committer | Eneas U de Queiroz <cote2004-github@yahoo.com> | 2018-12-07 17:06:01 -0200 |
commit | ec317934b2317e0e0f1831c703a643028d1acaa6 (patch) | |
tree | 37177217fbd936766f2d2b00c89bb1992f8ddb57 /libs/libglog | |
parent | 2a6023c592b1311f8972a5f72286e275e84b55af (diff) |
libglog: fix removing libunwind dependency
ac_cv_header_libunwind_h needs to be set to 0, as ac_cv_have_libunwind_h
overwritten based on the former's value.
Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
Diffstat (limited to 'libs/libglog')
-rw-r--r-- | libs/libglog/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/libglog/Makefile b/libs/libglog/Makefile index 0c5ee7c41..98b1970f0 100644 --- a/libs/libglog/Makefile +++ b/libs/libglog/Makefile @@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=glog PKG_VERSION:=0.3.5 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/google/glog/tar.gz/v$(PKG_VERSION)? @@ -32,7 +32,7 @@ define Package/glog/description module. Documentation for the implementation is in doc/. endef -CONFIGURE_VARS+=ac_cv_have_libunwind_h=0 +CONFIGURE_VARS+=ac_cv_header_libunwind_h=0 TARGET_CXXFLAGS+=-std=c++11 TARGET_LDFLAGS+=-lpthread |