wesnothd: Don't warn about FIFODIR being unset on Windows

Since to my knowledge it's impossible to create named pipes on Windows on
a regular filesystem and both the listener and the sender have to use the
Win32 API to establish communication instead.
This commit is contained in:
Ignacio R. Morelle 2015-04-23 19:37:16 -04:00
parent d7d76ac1fc
commit a810cb8937

View File

@ -491,10 +491,10 @@ void server::load_config() {
# pragma message ("No FIFODIR set")
# define FIFODIR "d:/"
# else
# warning "No FIFODIR set"
# ifdef _WIN32
# define FIFODIR "d:/"
# else
# warning "No FIFODIR set"
# define FIFODIR "/var/run/wesnothd"
# endif
# endif