diff options
author | marcel <marcel@FreeBSD.org> | 2015-08-24 16:26:20 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2015-08-24 16:26:20 +0000 |
commit | 02ffac2cca7d10e6d7dd08bf0312f623bf082268 (patch) | |
tree | 2b06534b5d1c1378ec99094a62eff13dfd2e48fc /lib/libxo | |
parent | db61d1271ad0bc51e60afe181a45a7318591dad6 (diff) | |
download | FreeBSD-src-02ffac2cca7d10e6d7dd08bf0312f623bf082268.zip FreeBSD-src-02ffac2cca7d10e6d7dd08bf0312f623bf082268.tar.gz |
Upgrade libxo to 0.4.5.
Local changes incorporated by 0.4.5: r284340
Local changes retained: r276260, r282117
Obtained from: https://github.com/Juniper/libxo
Diffstat (limited to 'lib/libxo')
-rw-r--r-- | lib/libxo/Makefile | 43 |
1 files changed, 32 insertions, 11 deletions
diff --git a/lib/libxo/Makefile b/lib/libxo/Makefile index 62fface..8ca1292 100644 --- a/lib/libxo/Makefile +++ b/lib/libxo/Makefile @@ -9,33 +9,40 @@ SHLIB_MAJOR=0 SHLIBDIR?= /lib -SRCS= libxo.c +SRCS= libxo.c xo_encoder.c xo_syslog.c CFLAGS+=-I${LIBXO}/libxo +CFLAGS+=-DXO_ENCODERDIR=\"/usr/lib/libxo/encoder\" -INCS= xo.h +INCS= xo.h xo_encoder.h INCSDIR=${INCLUDEDIR}/libxo +WARNS?= 5 + MAN+= libxo.3 MAN+= xo_attr.3 \ xo_create.3 \ xo_emit.3 \ + xo_emit_err.3 \ xo_err.3 \ xo_error.3 \ xo_finish.3 \ xo_flush.3 \ + xo_message.3 \ xo_no_setlocale.3 \ xo_open_container.3 \ - xo_open_marker.3 \ xo_open_list.3 \ + xo_open_marker.3 \ xo_parse_args.3 \ xo_set_allocator.3 \ xo_set_flags.3 \ xo_set_info.3 \ xo_set_options.3 \ xo_set_style.3 \ + xo_set_syslog_enterprise_id.3 \ xo_set_version.3 \ - xo_set_writer.3 + xo_set_writer.3 \ + xo_syslog.3 MAN+= xo_format.5 MLINKS= xo_attr.3 xo_attr_h.3 \ @@ -44,18 +51,23 @@ MLINKS= xo_attr.3 xo_attr_h.3 \ xo_create.3 xo_destroy.3 \ xo_emit.3 xo_emit_h.3 \ xo_emit.3 xo_emit_hv.3 \ + xo_emit_err.3 xo_emit_errc.3 \ + xo_emit_err.3 xo_emit_errx.3 \ + xo_emit_err.3 xo_emit_warn.3 \ + xo_emit_err.3 xo_emit_warnx.3 \ + xo_emit_err.3 xo_emit_warn_c.3 \ + xo_emit_err.3 xo_emit_warn_hc.3 \ + xo_err.3 xo_errc.3 \ + xo_err.3 xo_errx.3 \ xo_err.3 xo_warn.3 \ xo_err.3 xo_warnx.3 \ xo_err.3 xo_warn_c.3 \ xo_err.3 xo_warn_hc.3 \ - xo_err.3 xo_errc.3 \ - xo_err.3 xo_errx.3 \ - xo_err.3 xo_message.3 \ - xo_err.3 xo_message_c.3 \ - xo_err.3 xo_message_hc.3 \ - xo_err.3 xo_message_hcv.3 \ xo_finish.3 xo_finish_h.3 \ xo_flush.3 xo_flush_h.3 \ + xo_message.3 xo_message_c.3 \ + xo_message.3 xo_message_hc.3 \ + xo_message.3 xo_message_hcv.3 \ xo_open_container.3 xo_open_container_h.3 \ xo_open_container.3 xo_open_container_hd.3 \ xo_open_container.3 xo_open_container_d.3 \ @@ -78,7 +90,16 @@ MLINKS= xo_attr.3 xo_attr_h.3 \ xo_open_list.3 xo_close_list_h.3 \ xo_open_list.3 xo_close_list_hd.3 \ xo_open_list.3 xo_close_list_d.3 \ + xo_open_marker.3 xo_open_marker_h.3 \ + xo_open_marker.3 xo_close_marker.3 \ + xo_open_marker.3 xo_close_marker_h.3 \ + xo_parse_args.3 xo_set_program.3 \ xo_set_flags.3 xo_clear_flags.3 \ - xo_set_style.3 xo_set_style_name.3 + xo_set_style.3 xo_set_style_name.3 \ + xo_set_version.3 xo_set_version_h.3 \ + xo_syslog.3 xo_close_log.3 \ + xo_syslog.3 xo_open_log.3 \ + xo_syslog.3 xo_set_logmask.3 \ + xo_syslog.3 xo_vsyslog.3 .include <bsd.lib.mk> |