pkgsrc/sysutils/rsyslog-libgcrypt/Makefile
fhajny ae774bfbcb sysutils/rsyslog*: Update to 8.35.0.
- imptcp: add ability to configure socket backlog
- omfile: do not permit filename that only consists of whitespace
- fmhash: new hash function module
- some better error messages
- imklog: add ratelimiting capability
- omkafka: added impstats counters for librdkafka returned statistics
- imudp
  * use rsyslog message rate-limiter instead of home-grown one
  * add stats counter "disallowed"
- imrelp: add parameter "oversizeMode"
- core: consistent handling of oversize input messages
- omfwd: add support for bind-to-address for UDP
- template systemd service file proposes higher permitted file handle
  limit
- imuxsock: replace select() call by poll()
- nsdsel_ptcp: replace select() by poll()
- omprog: refactor tests, fix child closing issues
- core: config optimizer did not handle call_indirect
- debug support: add capability to print testbench-specific timeout
  reports
- mmgrok: fix potential segfault
- imrelp bugfix: maxDataSize could be set lower than maxMessageSize
- build system bugfix: build broken if liblogging-stdlog installed in
  custom path
- core bugfix: segfault on queue shutdown
- imfile bugfix: statefiles contain invalid JSON
- omfile bugfix: segfault if empty filename was given
- fix build issues when atomic operations are not present
- lmsig_ksils12 bugfix: build and static analyzer issues
- impstats bugfix: segfault if bound to non-existing ruleset
- mmjsonparse bugfix: invalid container name was not detected
- mmkubernetes bugfixes: fix lnrules, add defaults, add test
- build system bugfix: --enable-atomic-operations did not work
- bugfix: rsyslog aborts on startup when specific config errors are
  made
- build system: remove no longer needed --enable-libcurl configure
2018-05-16 15:00:19 +00:00

34 lines
1 KiB
Makefile

# $NetBSD: Makefile,v 1.4 2018/05/16 15:00:19 fhajny Exp $
#
RSYSLOG_MOD= libgcrypt
PKGNAME= ${DISTNAME:S/rsyslog/rsyslog-${RSYSLOG_MOD}/}
DEPENDS+= rsyslog>=${PKGVERSION_NOREV}:../../sysutils/rsyslog
#/usr/bin/ld: cannot find ../runtime/.libs/librsyslog.a: No such file or directory
MAKE_JOBS_SAFE= no
.include "../../sysutils/rsyslog/Makefile.common"
CONFIGURE_ARGS+= --enable-libgcrypt
BUILD_DIRS= compat grammar runtime tools
INSTALLATION_DIRS+= bin lib/rsyslog ${PKGMANDIR}/man1
do-install:
${INSTALL_DATA} ${WRKSRC}/runtime/.libs/lmcry_gcry.a \
${DESTDIR}${PREFIX}/lib/rsyslog/
${INSTALL_LIB} ${WRKSRC}/runtime/.libs/lmcry_gcry.so \
${DESTDIR}${PREFIX}/lib/rsyslog/
${INSTALL_LIB} ${WRKSRC}/runtime/.libs/lmcry_gcry.lai \
${DESTDIR}${PREFIX}/lib/rsyslog/lmcry_gcry.la
${INSTALL_PROGRAM} ${WRKSRC}/tools/rscryutil \
${DESTDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/tools/rscryutil.1 \
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
.include "../../security/libgcrypt/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"