From: havoc Date: Mon, 24 Sep 2007 12:33:09 +0000 (+0000) Subject: correct a typo (-lws_32 should be -lws2_32) X-Git-Tag: xonotic-v0.1.0preview~2897 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=c7db8817be6680613b5390eb9f02d05d6bab4229;p=xonotic%2Fdarkplaces.git correct a typo (-lws_32 should be -lws2_32) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7578 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/makefile.inc b/makefile.inc index 8c5ffd89..7ca4143c 100644 --- a/makefile.inc +++ b/makefile.inc @@ -248,7 +248,7 @@ OBJ_WGL= builddate.c sys_win.o vid_wgl.o conproc.o $(OBJ_SND_WIN) $(OBJ_WINCD) $ # Link # Note that Windows Vista users may need --large-address-aware because Vista seems to map over 500MB of application address space for its own purposes, which is a significant chunk taken out of the default 2GB address space, this option raises the limit to 4GB (or 3GB on Vista 32 and older versions of Windows). -LDFLAGS_WINCOMMON=-lws_32 -Wl,--large-address-aware +LDFLAGS_WINCOMMON=-lws2_32 -Wl,--large-address-aware LDFLAGS_WINCL=$(LDFLAGS_WINCOMMON) -mwindows -lwinmm -luser32 -lgdi32 -ldxguid -ldinput -lcomctl32 LDFLAGS_WINSV=$(LDFLAGS_WINCOMMON) -mconsole -lwinmm LDFLAGS_WINSDL=$(LDFLAGS_WINCOMMON) `$(SDL_CONFIG) --libs`