提交 8fb47f88 authored 作者: Michael Jerris's avatar Michael Jerris

add mod_expr to the windows build.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6190 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 713afbd9
差异被折叠。
# Microsoft Developer Studio Project File - Name="expreval" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Static Library" 0x0104
CFG=expreval - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "expreval.mak".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "expreval.mak" CFG="expreval - Win32 Debug"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "expreval - Win32 Release" (based on "Win32 (x86) Static Library")
!MESSAGE "expreval - Win32 Debug" (based on "Win32 (x86) Static Library")
!MESSAGE
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
CPP=cl.exe
RSC=rc.exe
!IF "$(CFG)" == "expreval - Win32 Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "Release"
# PROP BASE Intermediate_Dir "Release"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "Release"
# PROP Intermediate_Dir "Release"
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
# ADD CPP /nologo /G6 /MT /W3 /GX /O2 /Op /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
# ADD BASE RSC /l 0x409 /d "NDEBUG"
# ADD RSC /l 0x409 /d "NDEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
!ELSEIF "$(CFG)" == "expreval - Win32 Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "Debug"
# PROP BASE Intermediate_Dir "Debug"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "Debug"
# PROP Intermediate_Dir "Debug"
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
# ADD CPP /nologo /G6 /MTd /Za /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
# ADD BASE RSC /l 0x409 /d "_DEBUG"
# ADD RSC /l 0x409 /d "_DEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
!ENDIF
# Begin Target
# Name "expreval - Win32 Release"
# Name "expreval - Win32 Debug"
# Begin Group "Source Files"
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
# Begin Source File
SOURCE=.\expreval.c
# End Source File
# Begin Source File
SOURCE=.\exprfunc.c
# End Source File
# Begin Source File
SOURCE=.\exprinit.c
# End Source File
# Begin Source File
SOURCE=.\exprmem.c
# End Source File
# Begin Source File
SOURCE=.\exprobj.c
# End Source File
# Begin Source File
SOURCE=.\exprpars.c
# End Source File
# Begin Source File
SOURCE=.\exprutil.c
# End Source File
# Begin Source File
SOURCE=.\exprval.c
# End Source File
# End Group
# Begin Group "Header Files"
# PROP Default_Filter "h;hpp;hxx;hm;inl"
# Begin Source File
SOURCE=.\exprconf.h
# End Source File
# Begin Source File
SOURCE=.\expreval.h
# End Source File
# Begin Source File
SOURCE=.\exprilfs.h
# End Source File
# Begin Source File
SOURCE=.\exprincl.h
# End Source File
# Begin Source File
SOURCE=.\exprmem.h
# End Source File
# Begin Source File
SOURCE=.\exprpriv.h
# End Source File
# End Group
# Begin Source File
SOURCE=.\expreval.html
# End Source File
# Begin Source File
SOURCE=.\exprtmpl.html
# End Source File
# Begin Source File
SOURCE=.\license.txt
# End Source File
# Begin Source File
SOURCE=.\readme.txt
# End Source File
# End Target
# End Project
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
Project: "expreval"=.\expreval.dsp - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
}}}
###############################################################################
Project: "imagegen"=.\imagegen\imagegen.dsp - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
Begin Project Dependency
Project_Dep_Name expreval
End Project Dependency
}}}
###############################################################################
Project: "test"=.\test\test.dsp - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
Begin Project Dependency
Project_Dep_Name expreval
End Project Dependency
}}}
###############################################################################
Global:
Package=<5>
{{{
}}}
Package=<3>
{{{
}}}
###############################################################################
...@@ -13,6 +13,17 @@ ...@@ -13,6 +13,17 @@
/* Includes and macros and whatnot for building the library */ /* Includes and macros and whatnot for building the library */
#ifdef _MSC_VER
#if (_MSC_VER >= 1400) // VC8+
#ifndef _CRT_SECURE_NO_DEPRECATE
#define _CRT_SECURE_NO_DEPRECATE
#endif
#ifndef _CRT_NONSTDC_NO_DEPRECATE
#define _CRT_NONSTDC_NO_DEPRECATE
#endif
#endif // VC8+
#endif
/* Memory routines. memory.h for VC++, mem.h for BC++ */ /* Memory routines. memory.h for VC++, mem.h for BC++ */
#ifdef __TURBOC__ #ifdef __TURBOC__
#include <mem.h> #include <mem.h>
......
...@@ -97,7 +97,7 @@ int exprStringToTokenList(exprObj *obj, char *expr, exprToken **tokens, int *cou ...@@ -97,7 +97,7 @@ int exprStringToTokenList(exprObj *obj, char *expr, exprToken **tokens, int *cou
/* Check string length */ /* Check string length */
len = strlen(expr); len = (int)strlen(expr);
if(len == 0) if(len == 0)
return EXPR_ERROR_EMPTYEXPR; return EXPR_ERROR_EMPTYEXPR;
......
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="8.00"
Name="mod_expr"
ProjectGUID="{65A6273D-FCAB-4C55-B09E-65100141A5D4}"
RootNamespace="mod_expr"
Keyword="Win32Proj"
>
<Platforms>
<Platform
Name="Win32"
/>
</Platforms>
<ToolFiles>
</ToolFiles>
<Configurations>
<Configuration
Name="Debug|Win32"
ConfigurationType="2"
InheritedPropertySheets="..\..\..\..\w32\module_debug.vsprops"
CharacterSet="2"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
/>
<Tool
Name="VCCLCompilerTool"
UsePrecompiledHeader="0"
DisableSpecificWarnings="4100;4701"
/>
<Tool
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
/>
<Tool
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCLinkerTool"
/>
<Tool
Name="VCALinkTool"
/>
<Tool
Name="VCManifestTool"
/>
<Tool
Name="VCXDCMakeTool"
/>
<Tool
Name="VCBscMakeTool"
/>
<Tool
Name="VCFxCopTool"
/>
<Tool
Name="VCAppVerifierTool"
/>
<Tool
Name="VCWebDeploymentTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
<Configuration
Name="Release|Win32"
ConfigurationType="2"
InheritedPropertySheets="..\..\..\..\w32\module_release.vsprops"
CharacterSet="2"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
/>
<Tool
Name="VCCLCompilerTool"
UsePrecompiledHeader="0"
DisableSpecificWarnings="4100;4701"
/>
<Tool
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
/>
<Tool
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCLinkerTool"
/>
<Tool
Name="VCALinkTool"
/>
<Tool
Name="VCManifestTool"
/>
<Tool
Name="VCXDCMakeTool"
/>
<Tool
Name="VCBscMakeTool"
/>
<Tool
Name="VCFxCopTool"
/>
<Tool
Name="VCAppVerifierTool"
/>
<Tool
Name="VCWebDeploymentTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
</Configurations>
<References>
</References>
<Files>
<File
RelativePath=".\conio.h"
>
</File>
<File
RelativePath=".\exprconf.h"
>
</File>
<File
RelativePath=".\expreval.c"
>
</File>
<File
RelativePath=".\expreval.h"
>
</File>
<File
RelativePath=".\exprfunc.c"
>
</File>
<File
RelativePath=".\exprilfs.h"
>
</File>
<File
RelativePath=".\exprincl.h"
>
</File>
<File
RelativePath=".\exprinit.c"
>
</File>
<File
RelativePath=".\exprmem.c"
>
</File>
<File
RelativePath=".\exprmem.h"
>
</File>
<File
RelativePath=".\exprobj.c"
>
</File>
<File
RelativePath=".\exprpars.c"
>
</File>
<File
RelativePath=".\exprpriv.h"
>
</File>
<File
RelativePath=".\exprutil.c"
>
</File>
<File
RelativePath=".\exprval.c"
>
</File>
<File
RelativePath=".\mod_expr.c"
>
</File>
</Files>
<Globals>
</Globals>
</VisualStudioProject>
差异被折叠。
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论