Changeset 678

Show
Ignore:
Timestamp:
17/08/08 13:22:33 (5 months ago)
Author:
ono
Message:

Add stream compression support and zlib1 dependencies.

Location:
trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/README.win32

    r673 r678  
    4848      Remember to apply the patch you find there too. 
    4949 
    50    6. http://dev.mysql.com/downloads/mysql/5.0.html 
     50   6. http://www.zlib.net/ 
     51 
     52      zlib sources, linking to: zlib1.lib, convert & use VC project files at: 
     53      projects/visualc6, link to Win32_DLL_ASM_Release. If you encounter MASM 
     54      error: 
     55         .\inffas32.asm(647) : error A2070: invalid instruction operands 
     56      Add a "dword ptr" type qualifier before "[esp]" as described here: 
     57      http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=166511 
     58 
     59   7. http://dev.mysql.com/downloads/mysql/5.0.html 
    5160 
    5261      MySQL, auth & storage module, binary, linking to: libmysql.lib 
    5362 
    54    7. http://www.sqlite.org/download.html 
     63   8. http://www.sqlite.org/download.html 
    5564 
    5665      SQLite, auth & storage module, source, linking to: sqlite3.lib. Since 
     
    5867      sqlite-source-3.x.zip from SQLite downloads. 
    5968 
    60    8. http://tortoisesvn.tigris.org/ 
     69   9. http://tortoisesvn.tigris.org/ 
    6170 
    6271      TortoiseSVN with SubWCRev tool binary to generate version.h and version.wxi. 
     
    6473      (Done by default by TortoiseSVN installer) 
    6574 
    66    9. http://wix.sourceforge.net/releases/ 
     75  10. http://wix.sourceforge.net/releases/ 
    6776 
    6877      WiX 3.0.4401.0 or newer for building MSI jabberd2 setup inside VS2005 IDE 
    6978 
    70   10. http://www.activestate.com/store/activeperl/download/ 
     79  11. http://www.activestate.com/store/activeperl/download/ 
    7180 
    7281      ActivePerl (or any Perl distribution) perl command present in PATH 
  • trunk/win32/jabberd2/jabberd2.vcproj

    r677 r678  
    6262                        <Tool 
    6363                                Name="VCLinkerTool" 
    64                                 AdditionalDependencies="libidn.lib libgsasl.lib libeay32MT.lib ssleay32MT.lib dnsapi.lib ws2_32.lib libexpat.lib" 
     64                                AdditionalDependencies="libidn.lib libgsasl.lib libeay32MT.lib ssleay32MT.lib dnsapi.lib ws2_32.lib libexpat.lib zlib1.lib" 
    6565                                OutputFile="../bin/debug/$(ProjectName).dll" 
    6666                                AdditionalLibraryDirectories="../lib/debug;../lib" 
     
    138138                        <Tool 
    139139                                Name="VCLinkerTool" 
    140                                 AdditionalDependencies="libidn.lib libgsasl.lib libeay32MT.lib ssleay32MT.lib dnsapi.lib ws2_32.lib libexpat.lib" 
     140                                AdditionalDependencies="libidn.lib libgsasl.lib libeay32MT.lib ssleay32MT.lib dnsapi.lib ws2_32.lib libexpat.lib zlib1.lib" 
    141141                                OutputFile="../bin/$(ProjectName).dll" 
    142142                                AdditionalLibraryDirectories="../lib" 
     
    345345                                </File> 
    346346                                <File 
     347                                        RelativePath="..\..\sx\compress.c" 
     348                                        > 
     349                                </File> 
     350                                <File 
    347351                                        RelativePath="..\..\sx\env.c" 
    348352                                        > 
     
    539543                                                        Name="VCCustomBuildTool" 
    540544                                                        Description="Updating $(InputDir)$(InputName)" 
    541                                                         CommandLine="subwcrev ..\.. $(InputPath) $(InputDir)$(InputName)" 
     545                                                        CommandLine="subwcrev ..\.. $(InputPath) $(InputDir)$(InputName)&#x0D;&#x0A;" 
    542546                                                        AdditionalDependencies="$(InputDir)..\.svn\entries" 
    543547                                                        Outputs="$(InputDir)$(InputName)" 
     
    550554                                                        Name="VCCustomBuildTool" 
    551555                                                        Description="Updating $(InputDir)$(InputName)" 
    552                                                         CommandLine="subwcrev ..\.. $(InputPath) $(InputDir)$(InputName)" 
     556                                                        CommandLine="subwcrev ..\.. $(InputPath) $(InputDir)$(InputName)&#x0D;&#x0A;" 
    553557                                                        AdditionalDependencies="$(InputDir)..\.svn\entries" 
    554558                                                        Outputs="$(InputDir)$(InputName)" 
     
    569573                                                        Name="VCCustomBuildTool" 
    570574                                                        Description="Updating $(InputDir)$(InputName)" 
    571                                                         CommandLine="subwcrev ..\.. $(InputPath) $(InputDir)$(InputName)" 
     575                                                        CommandLine="subwcrev ..\.. $(InputPath) $(InputDir)$(InputName)&#x0D;&#x0A;" 
    572576                                                        AdditionalDependencies="$(InputDir)..\.svn\entries" 
    573577                                                        Outputs="$(InputDir)$(InputName)" 
     
    580584                                                        Name="VCCustomBuildTool" 
    581585                                                        Description="Updating $(InputDir)$(InputName)" 
    582                                                         CommandLine="subwcrev ..\.. $(InputPath) $(InputDir)$(InputName)" 
     586                                                        CommandLine="subwcrev ..\.. $(InputPath) $(InputDir)$(InputName)&#x0D;&#x0A;" 
    583587                                                        AdditionalDependencies="$(InputDir)..\.svn\entries" 
    584588                                                        Outputs="$(InputDir)$(InputName)" 
  • trunk/win32/setup/libraries.wxs

    r674 r678  
    1818                                <File Id="udns.dll" Name="udns.dll" KeyPath="yes" Vital="yes" /> 
    1919                        </Component> 
     20                        <Component Id="zlib1.dll" Guid="{D0FCED72-651D-4E1B-BFA5-85BCA9E337C9}"> 
     21                                <File Id="zlib1.dll" Name="zlib1.dll" KeyPath="yes" Vital="yes" /> 
     22                        </Component> 
    2023                </DirectoryRef> 
    2124        </Fragment> 
     
    2730                        <ComponentRef Id="sqlite3.dll" /> 
    2831                        <ComponentRef Id="udns.dll" /> 
     32                        <ComponentRef Id="zlib1.dll" /> 
    2933                </ComponentGroup> 
    3034        </Fragment>