liblogging: new package
Signed-off-by: Clayton Shotwell <clshotwe@rockwellcollins.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
bf25237ff3
commit
3bb6a3667b
@ -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
package/liblogging/Config.in
Normal file
8
package/liblogging/Config.in
Normal file
@ -0,0 +1,8 @@
|
||||
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
package/liblogging/liblogging.mk
Normal file
20
package/liblogging/liblogging.mk
Normal file
@ -0,0 +1,20 @@
|
||||
################################################################################
|
||||
#
|
||||
# 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))
|
Loading…
Reference in New Issue
Block a user