mirror of https://github.com/OpenTTD/OpenTTD
(svn r9016) [SunOS] -Fix: Don't use a struct-member that doesn't exist.
-Documentation: Updated readme.txt for SunOS 5.10 (aka Solaris 10) Note: With this commit, building and running on Solaris 10 works, thus we officially support this OS now :)release/0.6
parent
e092b2d8c7
commit
f8e7d08885
|
@ -146,6 +146,14 @@ Windows:
|
||||||
You can also build it using the Makefile with MSYS/MinGW or Cygwin/MinGW.
|
You can also build it using the Makefile with MSYS/MinGW or Cygwin/MinGW.
|
||||||
Please read the Makefile for more information.
|
Please read the Makefile for more information.
|
||||||
|
|
||||||
|
Solaris 10:
|
||||||
|
You need g++ (version 3 or higher), together with SDL. Installation of
|
||||||
|
libpng and zlib is recommended. For the first build it is required
|
||||||
|
to execute "bash configure" first. Note that ./configure does not work
|
||||||
|
yet. It is likely that you don't have a strip binary, so use the
|
||||||
|
--disable-strip option in that case. Fontconfig (>2.3.0) and freetype
|
||||||
|
are optional. "make run" will then run the program.
|
||||||
|
|
||||||
Unix:
|
Unix:
|
||||||
OpenTTD can be built with GNU "make". On non-GNU systems it's called "gmake".
|
OpenTTD can be built with GNU "make". On non-GNU systems it's called "gmake".
|
||||||
However, for the first build one has to do a "./configure" first.
|
However, for the first build one has to do a "./configure" first.
|
||||||
|
|
|
@ -491,7 +491,7 @@ static void NetworkFindIPs(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
p += sizeof(struct ifreq);
|
p += sizeof(struct ifreq);
|
||||||
#ifdef AF_LINK
|
#if defined(AF_LINK) && !defined(SUNOS)
|
||||||
p += req->ifr_addr.sa_len - sizeof(struct sockaddr);
|
p += req->ifr_addr.sa_len - sizeof(struct sockaddr);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue