liblogging.mk 639 B

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