diff options
author | Max Horn | 2008-01-13 12:54:13 +0000 |
---|---|---|
committer | Max Horn | 2008-01-13 12:54:13 +0000 |
commit | 2222b947ba08d57ca9cd1b188e3abe5b31299a1b (patch) | |
tree | 65e648362556683da9a86408096b111688ae6f5e /backends | |
parent | bf07f977e259227fc5cafac7a859ba78145b80e2 (diff) | |
download | scummvm-rg350-2222b947ba08d57ca9cd1b188e3abe5b31299a1b.tar.gz scummvm-rg350-2222b947ba08d57ca9cd1b188e3abe5b31299a1b.tar.bz2 scummvm-rg350-2222b947ba08d57ca9cd1b188e3abe5b31299a1b.zip |
WORKAROUND bug #1870304: Solaris does not provide INADDR_NONE
svn-id: r30467
Diffstat (limited to 'backends')
-rw-r--r-- | backends/midi/timidity.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/backends/midi/timidity.cpp b/backends/midi/timidity.cpp index bdf760249d..963af86a6e 100644 --- a/backends/midi/timidity.cpp +++ b/backends/midi/timidity.cpp @@ -53,6 +53,11 @@ #include <stdlib.h> #include <errno.h> +// WORKAROUND bug #1870304: Solaris does not provide INADDR_NONE. +#ifndef INADDR_NONE +#define INADDR_NONE 0xffffffff +#endif + #define SEQ_MIDIPUTC 5 #define TIMIDITY_LOW_DELAY |