Date: Mon, 19 Sep 2016 13:52:34 +0000 (UTC) From: Matthew Seaman <matthew@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422442 - in head/sysutils/rsyslog8: . files Message-ID: <201609191352.u8JDqYgY083573@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: matthew Date: Mon Sep 19 13:52:34 2016 New Revision: 422442 URL: https://svnweb.freebsd.org/changeset/ports/422442 Log: Fix autoconf detection of pthread_setschedparam() -- the test program needs to be linked against -lpthread. Regenerate patches by 'make makepatch' Take maintainership PR: 212823 Approved by: brd Added: head/sysutils/rsyslog8/files/patch-configure.ac (contents, props changed) Modified: head/sysutils/rsyslog8/Makefile head/sysutils/rsyslog8/files/patch-grammar_rainerscript.c head/sysutils/rsyslog8/files/patch-plugins_impstats_impstats.c head/sysutils/rsyslog8/files/patch-runtime_nsd__ptcp.c Modified: head/sysutils/rsyslog8/Makefile ============================================================================== --- head/sysutils/rsyslog8/Makefile Mon Sep 19 13:34:07 2016 (r422441) +++ head/sysutils/rsyslog8/Makefile Mon Sep 19 13:52:34 2016 (r422442) @@ -2,10 +2,11 @@ PORTNAME= rsyslog PORTVERSION= 8.19.0 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://www.rsyslog.com/files/download/rsyslog/ -MAINTAINER= brd@FreeBSD.org +MAINTAINER= matthew@FreeBSD.org COMMENT= Syslogd supporting SQL, TCP, and TLS BUILD_DEPENDS= libgcrypt-config:security/libgcrypt \ Added: head/sysutils/rsyslog8/files/patch-configure.ac ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rsyslog8/files/patch-configure.ac Mon Sep 19 13:52:34 2016 (r422442) @@ -0,0 +1,18 @@ +--- configure.ac.orig 2016-05-30 10:40:49 UTC ++++ configure.ac +@@ -294,10 +294,14 @@ AC_CHECK_LIB( + [1], + [Can set thread-name.])]) + +-AC_CHECK_FUNCS( ++AC_SEARCH_LIBS( + [pthread_setschedparam], ++ [pthread], + [ + rsyslog_have_pthread_setschedparam=yes ++ AC_DEFINE([HAVE_PTHREAD_SETSCHEDPARAM], ++ [1], ++ [Can set thread scheduling parameters]) + ], + [ + rsyslog_have_pthread_setschedparam=no Modified: head/sysutils/rsyslog8/files/patch-grammar_rainerscript.c ============================================================================== --- head/sysutils/rsyslog8/files/patch-grammar_rainerscript.c Mon Sep 19 13:34:07 2016 (r422441) +++ head/sysutils/rsyslog8/files/patch-grammar_rainerscript.c Mon Sep 19 13:52:34 2016 (r422442) @@ -1,4 +1,4 @@ ---- grammar/rainerscript.c.orig 2015-06-30 12:26:24 UTC +--- grammar/rainerscript.c.orig 2016-05-30 10:40:35 UTC +++ grammar/rainerscript.c @@ -35,6 +35,7 @@ #include <sys/stat.h> Modified: head/sysutils/rsyslog8/files/patch-plugins_impstats_impstats.c ============================================================================== --- head/sysutils/rsyslog8/files/patch-plugins_impstats_impstats.c Mon Sep 19 13:34:07 2016 (r422441) +++ head/sysutils/rsyslog8/files/patch-plugins_impstats_impstats.c Mon Sep 19 13:52:34 2016 (r422442) @@ -1,4 +1,4 @@ ---- plugins/impstats/impstats.c.orig 2015-04-30 08:50:15 UTC +--- plugins/impstats/impstats.c.orig 2016-05-30 10:40:35 UTC +++ plugins/impstats/impstats.c @@ -36,6 +36,7 @@ #include <errno.h> Modified: head/sysutils/rsyslog8/files/patch-runtime_nsd__ptcp.c ============================================================================== --- head/sysutils/rsyslog8/files/patch-runtime_nsd__ptcp.c Mon Sep 19 13:34:07 2016 (r422441) +++ head/sysutils/rsyslog8/files/patch-runtime_nsd__ptcp.c Mon Sep 19 13:52:34 2016 (r422442) @@ -1,4 +1,4 @@ ---- runtime/nsd_ptcp.c.orig 2015-04-30 08:50:16 UTC +--- runtime/nsd_ptcp.c.orig 2016-05-02 13:37:05 UTC +++ runtime/nsd_ptcp.c @@ -656,7 +656,11 @@ EnableKeepAlive(nsd_t *pNsd) if(pThis->iKeepAliveProbes > 0) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609191352.u8JDqYgY083573>