73b1f5e43a
- Drop patches (already in version)
- Disable gtest which has been added (and is enabled by default) with
be25d94c21
- Update indentation in hash file (two spaces)
https://github.com/google/glog/releases/tag/v0.5.0
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
24 lines
616 B
Makefile
24 lines
616 B
Makefile
################################################################################
|
|
#
|
|
# glog
|
|
#
|
|
################################################################################
|
|
|
|
GLOG_VERSION = 0.5.0
|
|
GLOG_SITE = $(call github,google,glog,v$(GLOG_VERSION))
|
|
GLOG_INSTALL_STAGING = YES
|
|
GLOG_LICENSE = BSD-3-Clause
|
|
GLOG_LICENSE_FILES = COPYING
|
|
GLOG_CONF_OPTS = \
|
|
-DWITH_GTEST=OFF \
|
|
$(if $(BR2_TOOLCHAIN_HAS_THREADS),-DWITH_THREADS=ON, -DWITH_THREADS=OFF)
|
|
|
|
ifeq ($(BR2_PACKAGE_GFLAGS),y)
|
|
GLOG_DEPENDENCIES += gflags
|
|
GLOG_CONF_OPTS += -DWITH_GFLAGS=ON
|
|
else
|
|
GLOG_CONF_OPTS += -DWITH_GFLAGS=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|