mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-22 12:01:25 +00:00
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:
parent
5d3e5f7f6d
commit
2a1d816aed
2 changed files with 8 additions and 8 deletions
|
@ -1247,8 +1247,8 @@
|
|||
</Configuration>
|
||||
<Configuration
|
||||
Name="GLRelease|Win32"
|
||||
OutputDirectory=".\ftequake___Win32_GLRelease"
|
||||
IntermediateDirectory=".\ftequake___Win32_GLRelease"
|
||||
OutputDirectory=".\GLRelease"
|
||||
IntermediateDirectory=".\GLRelease"
|
||||
ConfigurationType="1"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
|
||||
UseOfMFC="0"
|
||||
|
@ -1289,9 +1289,9 @@
|
|||
UsePrecompiledHeader="2"
|
||||
PrecompiledHeaderThrough="quakedef.h"
|
||||
PrecompiledHeaderFile=".\ftequake___Win32_GLRelease/ftequake.pch"
|
||||
AssemblerListingLocation=".\ftequake___Win32_GLRelease/"
|
||||
ObjectFile=".\ftequake___Win32_GLRelease/"
|
||||
ProgramDataBaseFileName=".\ftequake___Win32_GLRelease/"
|
||||
AssemblerListingLocation=".\GLRelease/"
|
||||
ObjectFile=".\GLRelease/"
|
||||
ProgramDataBaseFileName=".\GLRelease/"
|
||||
BrowseInformation="1"
|
||||
WarningLevel="3"
|
||||
SuppressStartupBanner="true"
|
||||
|
|
|
@ -137,7 +137,7 @@ void HTTP_RunExisting (void)
|
|||
int contentlen;
|
||||
|
||||
int HTTPmarkup; //version
|
||||
int errno;
|
||||
int localerrno;
|
||||
|
||||
HTTP_active_connections_t *prev, *cl = HTTP_ServerConnections;
|
||||
|
||||
|
@ -436,8 +436,8 @@ notimplemented:
|
|||
|
||||
if (ammount == -1)
|
||||
{
|
||||
errno = qerrno;
|
||||
if (errno != EWOULDBLOCK)
|
||||
localerrno = qerrno;
|
||||
if (localerrno != EWOULDBLOCK)
|
||||
{
|
||||
cl->close = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue