I don't know if this will show up under the same thread. I subscribe to the digest version, and I noticed this thread which was unresolved.

There are several ways to add properties to your svn controlled files. If you already have the file versioned, you can set the property with svn propset:

svn propset svn:eol-style native <file>

I would do this on a unix based system, since this has the potential of creating huge diffs when other line feeds are translated.

You can also the client settings found in ~/.subversion/config

enable-auto-props = yes

*.c = svn:eol-style=LF
*.cc = svn:eol-style=LF
*.cpp = svn:eol-style=LF
*.h = svn:eol-style=LF
CMakeLists.txt = svn:eol-style=LF

Here is the doc link:
http://svnbook.red-bean.com/nightly/en/svn.advanced.props.html#svn.advanced.props.auto

For the case of the header files, perhaps this might work. Disclaimer: I have no idea if this would work.

include/*/* = svn:eol-style=native

If you are willing to add the properties by hand, then this isn't so much of a problem (http://osgcvs.no-ip.com/osgarchiver/archives/July2003/0575.html).

James
_______________________________________________
osg-users mailing list
osg-users@openscenegraph.net
http://openscenegraph.net/mailman/listinfo/osg-users
http://www.openscenegraph.org/

Reply via email to