mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-20 01:30:42 +01:00
build system: add ability to specify omrelp default port
via --enable-omrelp-default-port ./configure parameter We primarily need this so that we can run the testbench without need to access privileged ports.
This commit is contained in:
parent
950c3ec4a5
commit
fa9fcaf197
10
configure.ac
10
configure.ac
@ -1110,6 +1110,16 @@ if test "x$enable_relp" = "xyes"; then
|
||||
fi
|
||||
AM_CONDITIONAL(ENABLE_RELP, test x$enable_relp = xyes)
|
||||
|
||||
# RELP default port
|
||||
AC_ARG_ENABLE(omrelp-default-port,
|
||||
[AS_HELP_STRING([--enable-omrelp-default-port],[set omrelp default port @<:@default=514@:>@])],
|
||||
[ AC_DEFINE_UNQUOTED(RELP_DFLT_PT, "${enableval}", [default port for omrelp]) ],
|
||||
[ AC_DEFINE(RELP_DFLT_PT, 514, [default port for omrelp]) ]
|
||||
)
|
||||
if test "x$enable_relp" = "xyes"; then
|
||||
PKG_CHECK_MODULES(RELP, relp >= 1.2.5)
|
||||
fi
|
||||
|
||||
|
||||
# GuardTime support
|
||||
AC_ARG_ENABLE(guardtime,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user