fix GL Release build issue, update msvc2005 project

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2158 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
TimeServ 2006-04-05 04:31:05 +00:00
parent 5d3e5f7f6d
commit 2a1d816aed
2 changed files with 8 additions and 8 deletions

View file

@ -1247,8 +1247,8 @@
</Configuration> </Configuration>
<Configuration <Configuration
Name="GLRelease|Win32" Name="GLRelease|Win32"
OutputDirectory=".\ftequake___Win32_GLRelease" OutputDirectory=".\GLRelease"
IntermediateDirectory=".\ftequake___Win32_GLRelease" IntermediateDirectory=".\GLRelease"
ConfigurationType="1" ConfigurationType="1"
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
UseOfMFC="0" UseOfMFC="0"
@ -1289,9 +1289,9 @@
UsePrecompiledHeader="2" UsePrecompiledHeader="2"
PrecompiledHeaderThrough="quakedef.h" PrecompiledHeaderThrough="quakedef.h"
PrecompiledHeaderFile=".\ftequake___Win32_GLRelease/ftequake.pch" PrecompiledHeaderFile=".\ftequake___Win32_GLRelease/ftequake.pch"
AssemblerListingLocation=".\ftequake___Win32_GLRelease/" AssemblerListingLocation=".\GLRelease/"
ObjectFile=".\ftequake___Win32_GLRelease/" ObjectFile=".\GLRelease/"
ProgramDataBaseFileName=".\ftequake___Win32_GLRelease/" ProgramDataBaseFileName=".\GLRelease/"
BrowseInformation="1" BrowseInformation="1"
WarningLevel="3" WarningLevel="3"
SuppressStartupBanner="true" SuppressStartupBanner="true"

View file

@ -137,7 +137,7 @@ void HTTP_RunExisting (void)
int contentlen; int contentlen;
int HTTPmarkup; //version int HTTPmarkup; //version
int errno; int localerrno;
HTTP_active_connections_t *prev, *cl = HTTP_ServerConnections; HTTP_active_connections_t *prev, *cl = HTTP_ServerConnections;
@ -436,8 +436,8 @@ notimplemented:
if (ammount == -1) if (ammount == -1)
{ {
errno = qerrno; localerrno = qerrno;
if (errno != EWOULDBLOCK) if (localerrno != EWOULDBLOCK)
{ {
cl->close = true; cl->close = true;
} }