liblogging.mk 604 B

123456789101112131415161718192021
  1. ################################################################################
  2. #
  3. # liblogging
  4. #
  5. ################################################################################
  6. LIBLOGGING_VERSION = 1.0.5
  7. LIBLOGGING_SITE = http://download.rsyslog.com/liblogging
  8. LIBLOGGING_LICENSE = BSD-2-Clause
  9. LIBLOGGING_LICENSE_FILES = COPYING
  10. LIBLOGGING_INSTALL_STAGING = YES
  11. LIBLOGGING_CONF_OPTS = --enable-cached-man-pages
  12. ifeq ($(BR2_INIT_SYSTEMD),y)
  13. LIBLOGGING_CONF_OPTS += --enable-journal
  14. LIBLOGGING_DEPENDENCIES += systemd
  15. else
  16. LIBLOGGING_CONF_OPTS += --disable-journal
  17. endif
  18. $(eval $(autotools-package))