Re: [fossil-users] Looking for guinea pig to test Makefile.msc changes

2013-01-26 Thread Stephan Beal
On Fri, Jan 25, 2013 at 11:24 PM, Ross Berteig r...@cheshireeng.com wrote: The json support also works well enough that my ticket report writer utility just works. (I still need to publish that, I will do that real soon now.) i'd be particularly interested in seeing what you've done there

[fossil-users] Fix some typos

2013-01-26 Thread Edward Berner
Hello, Here is a patch to fix a few typos. Edward Berner Index: auto.def == --- auto.def +++ auto.def @@ -195,7 +195,7 @@ define-append EXTRA_CFLAGS $cflags define-append EXTRA_LDFLAGS $ldflags

Re: [fossil-users] Right way to try something new and save/revert?

2013-01-26 Thread Gilles
On Fri, 25 Jan 2013 18:33:20 +0100, Stephan Beal sgb...@googlemail.com wrote: The json command doesn't exist in the Fossil I have (1.24 [0c65916136]): That's an optional feature and getting it to build on Windows in 1.24 apparently requires modifying the makefile (that was fixed yesterday while

Re: [fossil-users] Right way to try something new and save/revert?

2013-01-26 Thread Gilles
On Fri, 25 Jan 2013 10:43:03 -0800, Themba Fletcher themba.fletc...@gmail.com wrote: I have another question: fossil branch ls lists branches available in the repo, but is there a command to list all the files/revisions that have been commited to the experimental branch? I think 'fossil diff

[fossil-users] Fossil on Windows NT 4.0

2013-01-26 Thread Edward Berner
Hello, Yes, I use Fossil on Windows NT 4.0... It works okay, but not out of the box -- NT 4 doesn't support the ChangeServiceConfig2W and QueryServiceConfig2W functions and displays a dialog box saying The procedure entry point ChangeServiceConfig2W could not be located in the dynamic link

[fossil-users] _set_errno and older MSVC

2013-01-26 Thread Edward Berner
Hello, It appears that _set_errno() was introduced in Visual C++ 2005. Here is a patch for dirent.h to keep it from using _set_errno on older Microsoft compilers. Edward Berner Index: win/include/dirent.h == ---