diff options
author | tjw <tjw@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-09-20 16:13:20 +0000 |
---|---|---|
committer | tjw <tjw@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-09-20 16:13:20 +0000 |
commit | 81bedfa3b19da126f355cf7d52489719fe79db71 (patch) | |
tree | 04a6db7171db24f89b684846ee31296bf1fbfc72 /Makefile | |
parent | eb07490162d035aafd6256381c089f9135765ccc (diff) | |
download | ioquake3-aero-81bedfa3b19da126f355cf7d52489719fe79db71.tar.gz ioquake3-aero-81bedfa3b19da126f355cf7d52489719fe79db71.zip |
* (bug 2813) ioquake3 on win32 is no longer linked to SHFolder.dll. instead
it is dynamically loaded at run-time. this means that win95/win98
systems can fail the homepath detection gracefully if they don't have the
dll installed (this dll is only provided by Internet Explorer updates
on those systems)
git-svn-id: svn://svn.icculus.org/quake3/trunk@909 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -468,7 +468,7 @@ ifeq ($(PLATFORM),mingw32) BINEXT=.exe - LDFLAGS= -mwindows -lshfolder -lwsock32 -lgdi32 -lwinmm -lole32 + LDFLAGS= -mwindows -lwsock32 -lgdi32 -lwinmm -lole32 CLIENT_LDFLAGS= ifeq ($(USE_CURL),1) |