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:
parent
67a5a89b40
commit
ba74c1d1dc
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue