mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-03 20:03:12 +02:00
- The configure.ac change silently changed the nospoof parameter in
./configure. This meant that the answer to NOSPOOF in ./Config was ignored and it was always enabled.
This commit is contained in:
@@ -2039,3 +2039,6 @@
|
||||
- Give more clear error to users who use ``make custommodule'' without
|
||||
MODULEFILE. (#3935)
|
||||
- Support compiling with a bundled c-ares again, the hacky way. (#3931)
|
||||
- The configure.ac change silently changed the nospoof parameter in
|
||||
./configure. This meant that the answer to NOSPOOF in ./Config was ignored
|
||||
and it was always enabled.
|
||||
|
||||
@@ -45,8 +45,8 @@ if [ "$DISABLEEXTBANSTACKING" = "1" ]; then
|
||||
ARG="$ARG--with-disable-extendedban-stacking ";
|
||||
fi
|
||||
fi
|
||||
if [ "$NOSPOOF" = "1" ] ; then
|
||||
ARG="$ARG--enable-nospoof "
|
||||
if [ "$NOSPOOF" != "1" ] ; then
|
||||
ARG="$ARG--disable-nospoof "
|
||||
fi
|
||||
if [ "$CRYPTOIRCD" = "1" ] ; then
|
||||
if test x"$SSLDIR" = "x" ; then
|
||||
|
||||
Reference in New Issue
Block a user