mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
- Add USE_GCC=3.3+. It fixes core dumps on 4.x.
- Add /var/run/logpriv as an log source in syslog-ng.conf.sample. Submitted by: glebius
This commit is contained in:
parent
959e6a2b59
commit
d74326a7a5
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=130421
5 changed files with 9 additions and 2 deletions
|
@ -16,5 +16,6 @@ COMMENT= Library needed by syslog-ng
|
|||
GNU_CONFIGURE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_GCC= 3.3+
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -20,6 +20,7 @@ MAN8= syslog-ng.8
|
|||
|
||||
GNU_CONFIGURE= yes
|
||||
USE_REINPLACE= yes
|
||||
USE_GCC= 3.3+
|
||||
|
||||
PKGMESSAGE= ${WRKDIR}/MESSAGE
|
||||
|
||||
|
|
|
@ -11,7 +11,9 @@ options { long_hostnames(off); sync(0); };
|
|||
#
|
||||
# sources
|
||||
#
|
||||
source src { unix-dgram("/var/run/log"); udp(); internal(); file("/dev/klog"); };
|
||||
source src { unix-dgram("/var/run/log");
|
||||
unix-dgram("/var/run/logpriv" perm(0600));
|
||||
udp(); internal(); file("/dev/klog"); };
|
||||
|
||||
#
|
||||
# destinations
|
||||
|
|
|
@ -20,6 +20,7 @@ MAN8= syslog-ng.8
|
|||
|
||||
GNU_CONFIGURE= yes
|
||||
USE_REINPLACE= yes
|
||||
USE_GCC= 3.3+
|
||||
|
||||
PKGMESSAGE= ${WRKDIR}/MESSAGE
|
||||
|
||||
|
|
|
@ -11,7 +11,9 @@ options { long_hostnames(off); sync(0); };
|
|||
#
|
||||
# sources
|
||||
#
|
||||
source src { unix-dgram("/var/run/log"); udp(); internal(); file("/dev/klog"); };
|
||||
source src { unix-dgram("/var/run/log");
|
||||
unix-dgram("/var/run/logpriv" perm(0600));
|
||||
udp(); internal(); file("/dev/klog"); };
|
||||
|
||||
#
|
||||
# destinations
|
||||
|
|
Loading…
Add table
Reference in a new issue