Second try at the neew config option.

This commit is contained in:
Eric S. Raymond 2007-11-19 02:53:47 +00:00
parent 6e896934f1
commit 516c7af098

View file

@ -270,10 +270,10 @@ fi
AC_ARG_ENABLE([raw-sockets],
AS_HELP_STRING([--enable-raw-sockets], [use raw receiving sockets in the multiplayer network layer rather than the SDL_net facilities]),
[raw-sockets=$enableval],
[raw-sockets=no])
[raw_sockets=$enableval],
[raw_sockets=no])
if test "x$raw-sockets" = "xyes"
if test "x$raw_sockets" = "xyes"
then
CPPFLAGS="$CPPFLAGS -DNETWORK_USE_RAW_SOCKETS"
fi