1
0
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:
Bram Matthys
2010-07-17 10:38:36 +00:00
parent b2e4cf82f8
commit 35c30baace
2 changed files with 5 additions and 2 deletions
+3
View File
@@ -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.
+2 -2
View File
@@ -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