diff options
author | truelight <truelight@openttd.org> | 2007-01-21 15:18:36 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2007-01-21 15:18:36 +0000 |
commit | 9e9d5905f3a6bd41cca2529a2f46e12610f07847 (patch) | |
tree | bbced5aec57c1bc009f2616cbb87ad2ad8fb0c72 | |
parent | 1564c7425905d609d2adabbc1e0bd2c8159807ce (diff) | |
download | openttd-9e9d5905f3a6bd41cca2529a2f46e12610f07847.tar.xz |
(svn r8313) [WinCE] -Fix: -lws2 wasn't included in libraries, so network couldn't be linked
-rw-r--r-- | config.lib | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.lib b/config.lib index 3d2548cb3..b108031b9 100644 --- a/config.lib +++ b/config.lib @@ -657,7 +657,7 @@ make_cflags_and_ldflags() { LIBS="$LIBS -lc" fi if [ "$os" = "WINCE" ]; then - LIBS="$LIBS -lcoredll -lcorelibc -laygshell -e WinMainCRTStartup" + LIBS="$LIBS -lcoredll -lcorelibc -laygshell -lws2 -e WinMainCRTStartup" fi if [ "$os" = "MORPHOS" ]; then |