miniupnpd: Fix RemoteHost filtering support not enabled on linux

This commit is contained in:
Self-Hosting-Group 2024-05-10 16:44:11 +02:00
parent ae311e4b84
commit fc5c72d177
1 changed files with 1 additions and 1 deletions

2
miniupnpd/configure vendored
View File

@ -663,7 +663,7 @@ echo "Please edit config.h for more compilation options."
# define SUPPORT_REMOTEHOST if the FW related code really supports setting # define SUPPORT_REMOTEHOST if the FW related code really supports setting
# a RemoteHost # a RemoteHost
if [ \( "$FW" = "netfilter" \) -o \( "$FW" = "pf" \) -o \( "$FW" = "ipfw" \) ] ; then if [ \( "$FW" = "nftables" \) -o \( "$FW" = "iptables" \) -o \( "$FW" = "pf" \) -o \( "$FW" = "ipfw" \) ] ; then
echo "#define SUPPORT_REMOTEHOST" >> ${CONFIGFILE} echo "#define SUPPORT_REMOTEHOST" >> ${CONFIGFILE}
fi fi