Home / 1.7.8 / apache24
Name Modified Size InfoDownloads / Week
Parent folder
svn-win32-1.7.8-ap24_py26.zip 2013-01-28 571.1 kB
svn-win32-1.7.8-ap24_py25.zip 2013-01-28 573.3 kB
svn-win32-1.7.8-ap24_javahl.zip 2013-01-12 194.6 kB
svn-win32-1.7.8-ap24_pdb.zip 2012-12-20 13.0 MB
svn-win32-1.7.8-ap24_rb.zip 2012-12-20 3.4 MB
svn-win32-1.7.8-ap24_py27.zip 2012-12-20 571.0 kB
svn-win32-1.7.8-ap24_pl.zip 2012-12-20 665.4 kB
svn-win32-1.7.8-ap24_dev.zip 2012-12-20 7.6 MB
svn-win32-1.7.8-ap24.zip 2012-12-20 5.4 MB
README.txt 2012-12-20 4.0 kB
Totals: 10 Items   32.0 MB 0
This is Subversion for Win32, version 1.7.8. Read the CHANGES file to
see what changed in this release:

    http://svn.apache.org/repos/asf/subversion/branches/1.7.x/CHANGES
	

These binaries were built with:

    APR 1.4.6
    APR-util 1.3.12
    APR-ICONV 1.2.1
    Neon 0.29.6
    Berkeley DB 4.8.30
    OpenSSL 1.0.1c
    ZLib 1.2.7
    Apache 2.2.23
    Python 2.5.4 , 2.6.6 and 2.7.3 (2.5.6 and 2.6.8 is source only releases)
    Perl 5.14.2 (ActivePerl)
    libintl 0.14.1 (patched)
	Java 1.6.0_38
    Ruby 1.8.6
    Cyrus SASL 2.1.23
    serf 1.1.1
    sqlite 3.7.15.0
    SWIG 1.3.40

The patched libintl is at

    http://subversion.tigris.org/files/documents/15/20739/svn-win32-libintl.zip

Please read the Subversion INSTALL file for more information:

    http://svn.apache.org/repos/asf/subversion/trunk/INSTALL
    


Package contents:

    svn-win32-1.7.x/
       README.txt           -- This file
       bin/                 -- All Subversion binaries and supporting DLLs,
          *.exe                including APR DLLs
          *.dll
          *.pdb
          mod_*_svn.so      -- Apache modules
          mod_*_svn.pdb
       doc/                 -- Doxygen documentation
          *.html
          *.css
          *.png
       iconv/               -- All apr-iconv loadable modules
          *.so
          *.pdb
       include/             -- Include files (for development)
          *.h
          apr/
             *.h
          apr-util/
             *.h
          apr-iconv/
             *.h
       javahl/              -- Java HighLevel wrapper library
          *.jar
          *.dll
          *.pdb
       lib/                 -- Library files (for development)
          libsvn*.lib
          apr/
             *.lib
             *.pdb
          apr-util/
             *.lib
             *.pdb
          apr-iconv/
             *.lib
             *.pdb
          neon/
             *.lib
             *.pdb
          serf/
             *.lib
             *.pdb
          sasl/
             *.lib
             *.pdb
       licenses/            -- Various license files
       perl/                -- Perl language bindings
          site/lib/SVN/
             *.pm
          site/lib/auto/SVN/
             *.dll
             *.pdb
       python/              -- Python language bindings
          libsvn/
             *.py
             *.pyd
             *.dll
             *.pdb
          svn/
             *.py
       ruby/                -- Ruby language bindings
       share/
          locale/           -- Message translations

For a nice description of setting up Subversion on a server on Windows, see the
developer edition of the TortoiseSVN Manual, Chapter 3, Setting Up A Server:

   http://tortoisesvn.net/docs/nightly/TortoiseSVN_en/index.html

For an Apache server here's the essentials:

1. Copy bin/mod_dav_svn.so and bin/mod_authz_svn.so to the Apache modules directory.
2. Add the Subversion/bin directory to the SYSTEM PATH and reboot so all the Subversion
   support dll's are visible to the Apache service.
3. Edit the Apache configuration file (httpd.conf) and make the following changes:

  3a. Uncomment the following two lines:

      #LoadModule dav_fs_module modules/mod_dav_fs.so
      #LoadModule dav_module modules/mod_dav.so

  3b. Add the following two lines to the end of the LoadModule section:

      LoadModule dav_svn_module modules/mod_dav_svn.so
      LoadModule authz_svn_module modules/mod_authz_svn.so

  3c. Add the following to end of the file. Note: This Location directive is a
      minimal example with no authentication directives. For other options,
      especially authentication options, see the Subversion INSTALL file,
      the Subversion Book, or the TortoiseSVN Manual.

      <Location /svn>
        DAV svn
        SVNPath your/repository/path
      </Location>
Source: README.txt, updated 2012-12-20