Commit 3bb6a366 authored by Clayton Shotwell's avatar Clayton Shotwell Committed by Peter Korsgaard
Browse files

liblogging: new package

parent bf25237f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -773,6 +773,7 @@ source "package/libffi/Config.in"
source "package/libglib2/Config.in"
source "package/libical/Config.in"
source "package/liblog4c-localtime/Config.in"
source "package/liblogging/Config.in"
source "package/libnspr/Config.in"
source "package/libpfm4/Config.in"
source "package/libplist/Config.in"
+8 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBLOGGING
	bool "liblogging"
	help
	  Liblogging is an easy to use library for
	  logging. It offers an enhanced replacement
	  for the syslog() call, but retains its ease of use.

	  http://www.liblogging.org/
+20 −0
Original line number Diff line number Diff line
################################################################################
#
# liblogging
#
################################################################################

LIBLOGGING_VERSION = 1.0.2
LIBLOGGING_SITE = http://download.rsyslog.com/liblogging
LIBLOGGING_LICENSE = BSD-2c
LIBLOGGING_LICENSE_FILES = COPYING
LIBLOGGING_INSTALL_STAGING = YES
LIBLOGGING_CONF_OPT = --enable-cached-man-pages

ifeq ($(BR2_INIT_SYSTEMD),y)
LIBLOGGING_CONF_OPT += --enable-journal
else
LIBLOGGING_CONF_OPT += --disable-journal
endif

$(eval $(autotools-package))