Project

General

Profile

Actions

DevelGit » History » Revision 9

« Previous | Revision 9/20 (diff) | Next »
stbuehler, 2012-08-11 10:42


Subversion

Browser

You can check the Repository in your browser for logs/sources.

Checkout

The stable 1.4.x release series is in /branches/lighttpd-1.4.x:

$ svn checkout svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x/

Currently we use /trunk for the current development code that will become version 1.5.0

$ svn checkout svn://svn.lighttpd.net/lighttpd/trunk/ 

If you're developer the checkout command is:

$ svn checkout svn+ssh://svn@svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x/

or

$ svn checkout svn+ssh://svn@svn.lighttpd.net/lighttpd/trunk/

Building

You need to execute ./autogen.sh before you can use ./configure and friends.

trunk has support for cmake too.

Config

If you are developing on lighty and want to commit to the subversion tree, you need some properties set to make sure that you have the right EOL style.

On win32 you set the config in

c:\> notepad %APPDATA%\Subversion\config

on Unix in

$ vi ~/.subversion/config

The configfile should already exist and should contain several examples. You only have to
remove the #-sign from the beginning of the line and set these options:

[miscellany]
enable-auto-props=yes

[auto-props]
*.c = svn:eol-style=native
*.h = svn:eol-style=native

This will make sure that everyone gets the right line-endings on all platforms and (more important)
everyone can commit with his local EOL-style without breaking the line-endings for other users.

Updated by stbuehler over 11 years ago · 9 revisions