source "package/protobuf/Config.in"
source "package/schifra/Config.in"
source "package/startup-notification/Config.in"
+source "package/liblog4c-localtime/Config.in"
endmenu
menu "Text and terminal handling"
--- /dev/null
+config BR2_PACKAGE_LIBLOG4C_LOCALTIME
+ bool "liblog4c-localtime"
+ select BR2_PACKAGE_EXPAT
+ help
+ Log4c is a library of C for flexible logging to files, syslog
+ and other destinations.
+ This version is with localtime patch, to make lib show times in
+ local timezone.
+
+ https://github.com/rcmadruga/log4c-localtime
+ http://log4c.sourceforge.net/
--- /dev/null
+ #############################################################
+ #
+ # liblog4c
+ #
+ #############################################################
+ LIBLOG4C_LOCALTIME_VERSION = 1.0
+ LIBLOG4C_LOCALTIME_SITE = https://github.com/rcmadruga/log4c-localtime/tarball/v$(LIBLOG4C_LOCALTIME_VERSION)
+ LIBLOG4C_LOCALTIME_INSTALL_STAGING = YES
+ LIBLOG4C_LOCALTIME_CONF_OPT = --disable-expattest
+ LIBLOG4C_LOCALTIME_DEPENDENCIES = expat
+
+define LIBLOG4C_LOCALTIME_FIX_CONFIGURE_PERMS
+ chmod +x $(@D)/configure
+endef
+
+LIBLOG4C_LOCALTIME_PRE_CONFIGURE_HOOKS += LIBLOG4C_LOCALTIME_FIX_CONFIGURE_PERMS
+
+ $(eval $(autotools-package))