Commit 082b6f2d authored by Rahul Bedarkar's avatar Rahul Bedarkar Committed by Thomas Petazzoni
Browse files
parent 315e92c6
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -896,6 +896,7 @@ menu "JSON/XML"
endmenu

menu "Logging"
	source "package/glog/Config.in"
	source "package/liblog4c-localtime/Config.in"
	source "package/liblogging/Config.in"
	source "package/log4cplus/Config.in"

package/glog/Config.in

0 → 100644
+11 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_GLOG
	bool "glog"
	depends on BR2_INSTALL_LIBSTDCPP
	depends on BR2_TOOLCHAIN_HAS_THREADS
	help
	  C++ implementation of the Google logging module

	  https://github.com/google/glog

comment "glog needs a toolchain w/ C++, threads"
	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS

package/glog/glog.hash

0 → 100644
+2 −0
Original line number Diff line number Diff line
# No hash for v0.3.4, comes from the github-helper:
none	xxx	glog-v0.3.4.tar.gz

package/glog/glog.mk

0 → 100644
+17 −0
Original line number Diff line number Diff line
################################################################################
#
# glog
#
################################################################################

GLOG_VERSION = v0.3.4
GLOG_SITE = $(call github,google,glog,$(GLOG_VERSION))
GLOG_INSTALL_STAGING = YES
GLOG_LICENSE = BSD-3c
GLOG_LICENSE_FILES = COPYING

ifeq ($(BR2_PACKAGE_GFLAGS),y)
GLOG_DEPENDENCIES = gflags
endif

$(eval $(autotools-package))