Re: [fossil-users] Version 1.27

2013-09-12 Thread Samuel Debionne
Thank you, the tarball is OK.

Heres is a report of my build attempt of fossil with SSL support with
mingw32 and *openssl linked statically*. Some issues are probably not
specific to this platform though and not new to this version neither.

1. OpenSSL is build with zlib but the test in auto.def does not link
zlib and fails (even if crypto and ssl are present.)

The following patch fixes this.

fossil-src-2013094349/auto.def
@@ -147,7 +147,7 @@
-msg-quiet cc-with [list -cflags $cflags -libs {-lssl -lcrypto}] {
+msg-quiet cc-with [list -cflags $cflags -libs {-lssl -lcrypto -lz
-lws2_32 -lgdi32}] {

Note that on Windows ws2_32 and gdi32 are needed as well.

2. The final link does not include gdi32, a dependency of openssl on
Windows.

3. The test of the broken mingw command line does not work with
mingw32 (only mingw64 ?). Recompiling main_.c with
-DBROKEN_MINGW_CMDLINE fixes the Winmain@16 undefined symbol problem.

All these issues are quiet quite easy to fix by hand, just to let you
known that the build is not straight forward.
Samuel

Le 11/09/2013 18:07, Richard Hipp a écrit :
 On Wed, Sep 11, 2013 at 11:44 AM, Samuel Debionne
 samuel.debio...@ujf-grenoble.fr
 mailto:samuel.debio...@ujf-grenoble.fr wrote:
 
 The manifest and manifest.uuid is missing from the source tarball.
 
 
 Thanks for the report.  This should be fixed now.  (Please let me know
 if you find otherwise.)  I have also updated to release-build wiki with
 correct procedures that include manifest and manifest.uuid in the tarball.
 
 -- 
 D. Richard Hipp
 d...@sqlite.org mailto:d...@sqlite.org
 
 
 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
 

___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-12 Thread Jan Nijtmans
2013/9/11 Hakki Dogusan ha...@dogusan.net:
 I'm getting fossil.exe is not a valid Win32 application error in WinXP.

I downloaded fossil.exe (yesterday, before it was replaced
by the mingw OpenSSL-enabled build), and used the
depends utility to have a look at what symbols it uses
from kernel32.dll. A subset of this list:
CompareStringEx (Vista)
DecodePointer (XP SP2)
EncodePointer (XP SP2)
FlsAlloc (Vista)
FlsFree (Vista)
FlsGetValue (Vista)
FlsSetValue (Vista)
GetTickCount64 (Vista)
LCMapStringEx (Vista)
InitOnceExecuteOnce (Vista)

Neither Fossil, neither SQLite do any direct calls to any
of those functions, so the calls are all generated by the
Microsoft compiler/linker. The Mingw compiled fossil.exe
(which is the current download) doesn't contain any of
those imports from kernel32.dll. I tried this fossil.exe
on Windows XP, and it works fine.

I think this fully explains why fossil.exe compiled by
recent MSVC doesn't work on XP any more...

Regards,
   Jan Nijtmans
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-12 Thread Jan Nijtmans
2013/9/12 Jan Nijtmans jan.nijtm...@gmail.com:
 I think this fully explains why fossil.exe compiled by
 recent MSVC doesn't work on XP any more...

 Regards,
Jan Nijtmans

More info:
   http://msdn.microsoft.com/en-us/library/jj851139.aspx
In Visual Studio 12 Update 1 it is possible to target
Windows XP, but the default is Vista.

Regards,
Jan Nijtmans
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-12 Thread Hakki Dogusan

Hi,

12-09-2013 14:41 tarihinde, Jan Nijtmans yazdı:

2013/9/11 Hakki Dogusan ha...@dogusan.net:

I'm getting fossil.exe is not a valid Win32 application error in WinXP.


I downloaded fossil.exe (yesterday, before it was replaced
by the mingw OpenSSL-enabled build), and used the
depends utility to have a look at what symbols it uses
from kernel32.dll. A subset of this list:
 CompareStringEx (Vista)
 DecodePointer (XP SP2)
 EncodePointer (XP SP2)
 FlsAlloc (Vista)
 FlsFree (Vista)
 FlsGetValue (Vista)
 FlsSetValue (Vista)
 GetTickCount64 (Vista)
 LCMapStringEx (Vista)
 InitOnceExecuteOnce (Vista)

Neither Fossil, neither SQLite do any direct calls to any
of those functions, so the calls are all generated by the
Microsoft compiler/linker. The Mingw compiled fossil.exe
(which is the current download) doesn't contain any of
those imports from kernel32.dll. I tried this fossil.exe
on Windows XP, and it works fine.



Yes, re-downloaded version works here too. Thanks.



I think this fully explains why fossil.exe compiled by
recent MSVC doesn't work on XP any more...

Regards,
Jan Nijtmans


--
Regards,
Hakki Dogusan



___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Michai Ramakers
On 11 September 2013 16:03, Richard Hipp d...@sqlite.org wrote:

 I started a wiki page
 (http://www.fossil-scm.org/fossil/wiki?name=Release+Build+How-To) describing
 how the precompiled binaries are produced.  If adjustments need to be made
 for compatibility purposes, please let me know.  For example, ...

Thank you for making this release.
For my information: is WinXP still an 'officially supported' platform?
I realise it's a bit old, but I happen to use fossil on that platform,
occasionally.

Michai
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Richard Hipp
On Wed, Sep 11, 2013 at 10:36 AM, Michai Ramakers m.ramak...@gmail.comwrote:


 For my information: is WinXP still an 'officially supported' platform?
 I realise it's a bit old, but I happen to use fossil on that platform,
 occasionally.


I don't have a WinXP system to test on.  But maybe some of the other
developers do
-- 
D. Richard Hipp
d...@sqlite.org
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Stephan Beal
On Wed, Sep 11, 2013 at 5:08 PM, Warren Young war...@etr-usa.com wrote:

 Software can't go unmaintained indefinitely without consequences.


The primary consequence being that people eventually upgrade ;).


-- 
- stephan beal
http://wanderinghorse.net/home/stephan/
http://gplus.to/sgbeal
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Michai Ramakers
On 11 September 2013 16:03, Richard Hipp d...@sqlite.org wrote:
 Fossil version 1.27 has been tagged and precompiled binaries have been
 uploaded to http://www.fossil-scm.org/download.html

 I do this infrequently enough that I keep forgetting exactly how things were
 compiled the previous time.  So please try out the precompiled binaries and
 let me know if you encounter any problems.

slightly related question: is there, or will there be, a
regression-test suite for fossil? (I read about the sqlite testing
method, which is truly amazing.)

Michai
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Paolo Bolzoni
Maybe it is time to leave Windows?

On Wed, Sep 11, 2013 at 5:09 PM, Stephan Beal sgb...@googlemail.com wrote:
 On Wed, Sep 11, 2013 at 5:08 PM, Warren Young war...@etr-usa.com wrote:

 Software can't go unmaintained indefinitely without consequences.


 The primary consequence being that people eventually upgrade ;).


 --
 - stephan beal
 http://wanderinghorse.net/home/stephan/
 http://gplus.to/sgbeal

 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Warren Young

On 9/11/2013 08:59, John Long wrote:

On Wed, Sep 11, 2013 at 08:49:14AM -0600, Warren Young wrote:

Only 7 months left of MS support: http://goo.gl/dtpQj4


So what?


After the EOL date, XP will quickly start bit rotting.  You can predict 
the near future by looking at the state of Windows 2000 now.


I was a big fan of Win2K, but I wouldn't dream of running it today in 
anything but a test VM.


There's a fair chance it won't even boot on a modern PC, due to lack of 
driver support.


Another fun problem with Win2K now is that if you're in a part of the 
world where DST rules changed in the past few years (e.g. USA) the time 
will be off during part of the year, since the time zone DB isn't being 
updated any more.


Software can't go unmaintained indefinitely without consequences.
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Stephan Beal
On Wed, Sep 11, 2013 at 5:03 PM, Michai Ramakers m.ramak...@gmail.comwrote:

 slightly related question: is there, or will there be, a
 regression-test suite for fossil? (I read about the sqlite testing
 method, which is truly amazing.)


Fossil's testing infrastructure is not as amazing as sqlite's. For each
release we (normally several of us) run through the following checklist:

http://www.fossil-scm.org/index.html/doc/trunk/test/release-checklist.wiki

that said, most of us can only cover 1 or 2 of the more common platforms.

sqlite's testing infrastructure is somewhat of an anomaly (in a good way,
of course) and _extremely_ difficult to achieve.

-- 
- stephan beal
http://wanderinghorse.net/home/stephan/
http://gplus.to/sgbeal
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Jan Nijtmans
2013/9/11 Richard Hipp d...@sqlite.org:
 I don't have a WinXP system to test on.  But maybe some of the other
 developers do

WinXP should work fine, I tested fossil 1.25 or so on it.
And as far as I know there are no fundamental differences
in Windows API usage, so it still should work fine.
(If not, you can file a bug!)

Regards,
 Jan Nijtmans
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread John Long
On Wed, Sep 11, 2013 at 08:49:14AM -0600, Warren Young wrote:
 On 9/11/2013 08:36, Michai Ramakers wrote:
 For my information: is WinXP still an 'officially supported' platform?
 I realise it's a bit old, but I happen to use fossil on that platform,
 occasionally.

There are plenty of people still using XP for various reasons and tasks.

 
 Only 7 months left of MS support: http://goo.gl/dtpQj4
 
 After that, no more security patches.

So what? Maybe XP is safer than any of the NSA-approved Windows versions.
My unpatched firewalled copy has been running for over 10 years without any
issues.

  It's time to be migrating off XP.

If you have to use Windows you may as well use XP.

/jl
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Warren Young

On 9/11/2013 08:36, Michai Ramakers wrote:

For my information: is WinXP still an 'officially supported' platform?
I realise it's a bit old, but I happen to use fossil on that platform,
occasionally.


Only 7 months left of MS support: http://goo.gl/dtpQj4

After that, no more security patches.  It's time to be migrating off XP.
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread djgoku
This worked on Windows 2008 R2 64-bit, Windows 7 32-bit, Mountain Lion 10.8.4 
64-bit.

Jonathan Otuska 

On Sep 11, 2013, at 9:03 AM, Richard Hipp d...@sqlite.org wrote:

 Fossil version 1.27 has been tagged and precompiled binaries have been 
 uploaded to http://www.fossil-scm.org/download.html
 
 I do this infrequently enough that I keep forgetting exactly how things were 
 compiled the previous time.  So please try out the precompiled binaries and 
 let me know if you encounter any problems.
 
 I started a wiki page 
 (http://www.fossil-scm.org/fossil/wiki?name=Release+Build+How-To) describing 
 how the precompiled binaries are produced.  If adjustments need to be made 
 for compatibility purposes, please let me know.  For example, will the 
 Windows8 build using MSVC-x86 work for everybody, or do I need to redo that 
 build on (say) Windows7 or perhaps using MinGW?  Does the Mac binary work on 
 all intel-based Mac systems?  Etc.
 
 I'll send out an official release announcement once a few people have 
 verified the current binaries.
 
 -- 
 D. Richard Hipp
 d...@sqlite.org
 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Michai Ramakers
On 11 September 2013 16:36, Michai Ramakers m.ramak...@gmail.com wrote:
 On 11 September 2013 16:03, Richard Hipp d...@sqlite.org wrote:

 I started a wiki page
 (http://www.fossil-scm.org/fossil/wiki?name=Release+Build+How-To) describing
 how the precompiled binaries are produced.  If adjustments need to be made
 for compatibility purposes, please let me know.  For example, ...

 Thank you for making this release.
 For my information: is WinXP still an 'officially supported' platform?
 I realise it's a bit old, but I happen to use fossil on that platform,
 occasionally.

 Michai
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread John Long
On Wed, Sep 11, 2013 at 09:08:05AM -0600, Warren Young wrote:
 On 9/11/2013 08:59, John Long wrote:
 On Wed, Sep 11, 2013 at 08:49:14AM -0600, Warren Young wrote:
 Only 7 months left of MS support: http://goo.gl/dtpQj4
 
 So what?
 
 After the EOL date, XP will quickly start bit rotting.

Given my copy is about 13 years old and still perfectly usable and has been
running as-installed with exactly two KBs applied I really don't know what
difference it makes if it's EOLd or not. Auto-update is the first thing that
gets turned off on any Winstall I've ever done. There's a long list after that.

 Another fun problem with Win2K now is that if you're in a part of
 the world where DST rules changed in the past few years (e.g. USA)
 the time will be off during part of the year, since the time zone DB
 isn't being updated any more.

But we're not talking about Win2K which had a much shorter shelf life and was
obsolete a lot faster than XP was. Everything I need XP for (VPN and some
apps for work), and everything a few million other people need it for
already works.

 Software can't go unmaintained indefinitely without consequences.

Each piece of software has an independent and unknown lifetime and in this
case for many if not most users the consequences of going without
maintenance are preferable to throwing money down the toilet on a crappier,
more bloated version. Most people are either going to get something newer
against their will if they buy a new PC or will stay with what they have
until their hardware catches on fire.

Bottom line is a lot of people are using XP and will not upgrade and it is
really not appropriate for anybody to lecture them about doing it.

/jl

-- 
ASCII ribbon campaign ( ) Powered by Lemote Fuloong
 against HTML e-mail   X  Loongson MIPS and OpenBSD
   and proprietary/ \http://www.mutt.org
 attachments /   \  Code Blue or Go Home!
 Encrypted email preferred  PGP Key 2048R/DA65BC04 
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Samuel Debionne
Thank you for this release.
The manifest and manifest.uuid is missing from the source tarball.
Samuel


Le 11/09/2013 16:03, Richard Hipp a écrit :
 Fossil version 1.27 has been tagged and precompiled binaries have been
 uploaded to http://www.fossil-scm.org/download.html
 
 I do this infrequently enough that I keep forgetting exactly how things
 were compiled the previous time.  So please try out the precompiled
 binaries and let me know if you encounter any problems.
 
 I started a wiki page
 (http://www.fossil-scm.org/fossil/wiki?name=Release+Build+How-To)
 describing how the precompiled binaries are produced.  If adjustments
 need to be made for compatibility purposes, please let me know.  For
 example, will the Windows8 build using MSVC-x86 work for everybody, or
 do I need to redo that build on (say) Windows7 or perhaps using MinGW? 
 Does the Mac binary work on all intel-based Mac systems?  Etc.
 
 I'll send out an official release announcement once a few people have
 verified the current binaries.
 
 -- 
 D. Richard Hipp
 d...@sqlite.org mailto:d...@sqlite.org
 
 
 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
 

attachment: samuel_debionne.vcf___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Richard Hipp
On Wed, Sep 11, 2013 at 11:44 AM, Samuel Debionne 
samuel.debio...@ujf-grenoble.fr wrote:

 The manifest and manifest.uuid is missing from the source tarball.


Thanks for the report.  This should be fixed now.  (Please let me know if
you find otherwise.)  I have also updated to release-build wiki with
correct procedures that include manifest and manifest.uuid in the tarball.

-- 
D. Richard Hipp
d...@sqlite.org
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread djgoku
I didn't know there was an official testing document, I just dropped the exe in 
place and ran: fossil server file.fossil

I mostly just use fossil for the wiki which it looked fine so just to clarify I 
just glanced over the Wiki portion of Fossil and nothing else.

Jonathan Otsuka
On Sep 11, 2013, at 10:00 AM, djg...@gmail.com wrote:

 This worked on Windows 2008 R2 64-bit, Windows 7 32-bit, Mountain Lion 10.8.4 
 64-bit.
 
 Jonathan Otuska 
 
 On Sep 11, 2013, at 9:03 AM, Richard Hipp d...@sqlite.org wrote:
 
 Fossil version 1.27 has been tagged and precompiled binaries have been 
 uploaded to http://www.fossil-scm.org/download.html
 
 I do this infrequently enough that I keep forgetting exactly how things were 
 compiled the previous time.  So please try out the precompiled binaries and 
 let me know if you encounter any problems.
 
 I started a wiki page 
 (http://www.fossil-scm.org/fossil/wiki?name=Release+Build+How-To) describing 
 how the precompiled binaries are produced.  If adjustments need to be made 
 for compatibility purposes, please let me know.  For example, will the 
 Windows8 build using MSVC-x86 work for everybody, or do I need to redo that 
 build on (say) Windows7 or perhaps using MinGW?  Does the Mac binary work on 
 all intel-based Mac systems?  Etc.
 
 I'll send out an official release announcement once a few people have 
 verified the current binaries.
 
 -- 
 D. Richard Hipp
 d...@sqlite.org
 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
 

___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread James Turner
On Wed, Sep 11, 2013 at 10:52:44AM -0500, djg...@gmail.com wrote:
 I didn't know there was an official testing document, I just dropped the exe 
 in place and ran: fossil server file.fossil
 
 I mostly just use fossil for the wiki which it looked fine so just to clarify 
 I just glanced over the Wiki portion of Fossil and nothing else.
 
 Jonathan Otsuka

Fossil has tons of regressions tests. Download the source, tclsh
/path/to/fossil/source/test/tester.tcl /path/to/fossil

 On Sep 11, 2013, at 10:00 AM, djg...@gmail.com wrote:
 
  This worked on Windows 2008 R2 64-bit, Windows 7 32-bit, Mountain Lion 
  10.8.4 64-bit.
  
  Jonathan Otuska 
  
  On Sep 11, 2013, at 9:03 AM, Richard Hipp d...@sqlite.org wrote:
  
  Fossil version 1.27 has been tagged and precompiled binaries have been 
  uploaded to http://www.fossil-scm.org/download.html
  
  I do this infrequently enough that I keep forgetting exactly how things 
  were compiled the previous time.  So please try out the precompiled 
  binaries and let me know if you encounter any problems.
  
  I started a wiki page 
  (http://www.fossil-scm.org/fossil/wiki?name=Release+Build+How-To) 
  describing how the precompiled binaries are produced.  If adjustments need 
  to be made for compatibility purposes, please let me know.  For example, 
  will the Windows8 build using MSVC-x86 work for everybody, or do I need to 
  redo that build on (say) Windows7 or perhaps using MinGW?  Does the Mac 
  binary work on all intel-based Mac systems?  Etc.
  
  I'll send out an official release announcement once a few people have 
  verified the current binaries.
  
  -- 
  D. Richard Hipp
  d...@sqlite.org
  ___
  fossil-users mailing list
  fossil-users@lists.fossil-scm.org
  http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
  
 

 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


-- 
James Turner
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Hakki Dogusan

Hi,

11-09-2013 17:03 tarihinde, Richard Hipp yazdı:

Fossil version 1.27 has been tagged and precompiled binaries have been
uploaded to http://www.fossil-scm.org/download.html

I do this infrequently enough that I keep forgetting exactly how things
were compiled the previous time.  So please try out the precompiled
binaries and let me know if you encounter any problems.

I started a wiki page (
http://www.fossil-scm.org/fossil/wiki?name=Release+Build+How-To) describing
how the precompiled binaries are produced.  If adjustments need to be made
for compatibility purposes, please let me know.  For example, will the
Windows8 build using MSVC-x86 work for everybody, or do I need to redo that
build on (say) Windows7 or perhaps using MinGW?  Does the Mac binary work
on all intel-based Mac systems?  Etc.

I'll send out an official release announcement once a few people have
verified the current binaries.




I'm getting fossil.exe is not a valid Win32 application error in WinXP.


--
Regards,
Hakki Dogusan


___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Hakki Dogusan

Hi,

11-09-2013 18:40 tarihinde, Hakki Dogusan yazdı:

Hi,

11-09-2013 17:03 tarihinde, Richard Hipp yazdı:

Fossil version 1.27 has been tagged and precompiled binaries have been
uploaded to http://www.fossil-scm.org/download.html
[snip]


I'm getting fossil.exe is not a valid Win32 application error in WinXP.




DependencyWalker gives following:

Error: At least one module has an unresolved import due to a missing 
export function in an implicitly dependent module.


Missing functions in KERNEL32.EXE:
CompareStringEx
FlsAlloc/Free/GetValue/SetValue
GetTickCount64
LCMapStringEx


--
Regards,
Hakki Dogusan



___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Matt Welland
On Wed, Sep 11, 2013 at 7:03 AM, Richard Hipp d...@sqlite.org wrote:

 Fossil version 1.27 has been tagged and precompiled binaries have been
 uploaded to http://www.fossil-scm.org/download.html

 I do this infrequently enough that I keep forgetting exactly how things
 were compiled the previous time.  So please try out the precompiled
 binaries and let me know if you encounter any problems.

 I started a wiki page (
 http://www.fossil-scm.org/fossil/wiki?name=Release+Build+How-To)
 describing how the precompiled binaries are produced.  If adjustments need
 to be made for compatibility purposes, please let me know.  For example,
 will the Windows8 build using MSVC-x86 work for everybody, or do I need to
 redo that build on (say) Windows7 or perhaps using MinGW?  Does the Mac
 binary work on all intel-based Mac systems?  Etc.

 I'll send out an official release announcement once a few people have
 verified the current binaries.


From a quick browse of the timeline it looks like the ssh changes did not
make it in to this release. What needs to be done to make adding those
changes to the next release possible?

Also, a change summary would be helpful to direct testing efforts.


 --
 D. Richard Hipp
 d...@sqlite.org

 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users




-- 
Matt
-=-
90% of the nations wealth is held by 2% of the people. Bummer to be in the
majority...
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Matt Welland
On Wed, Sep 11, 2013 at 10:34 AM, Matt Welland estifo...@gmail.com wrote:




 On Wed, Sep 11, 2013 at 7:03 AM, Richard Hipp d...@sqlite.org wrote:

 Fossil version 1.27 has been tagged and precompiled binaries have been
 uploaded to http://www.fossil-scm.org/download.html

 I do this infrequently enough that I keep forgetting exactly how things
 were compiled the previous time.  So please try out the precompiled
 binaries and let me know if you encounter any problems.

 I started a wiki page (
 http://www.fossil-scm.org/fossil/wiki?name=Release+Build+How-To)
 describing how the precompiled binaries are produced.  If adjustments need
 to be made for compatibility purposes, please let me know.  For example,
 will the Windows8 build using MSVC-x86 work for everybody, or do I need to
 redo that build on (say) Windows7 or perhaps using MinGW?  Does the Mac
 binary work on all intel-based Mac systems?  Etc.

 I'll send out an official release announcement once a few people have
 verified the current binaries.


 From a quick browse of the timeline it looks like the ssh changes did not
 make it in to this release. What needs to be done to make adding those
 changes to the next release possible?

 Also, a change summary would be helpful to direct testing efforts.


Sorry, of course the change summary is on the web page. I think it would be
helpful to paste it into announcement emails.





 --
 D. Richard Hipp
 d...@sqlite.org

 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users




 --
 Matt
 -=-
 90% of the nations wealth is held by 2% of the people. Bummer to be in the
 majority...




-- 
Matt
-=-
90% of the nations wealth is held by 2% of the people. Bummer to be in the
majority...
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Richard Hipp
On Wed, Sep 11, 2013 at 1:34 PM, Matt Welland estifo...@gmail.com wrote:


 From a quick browse of the timeline it looks like the ssh changes did not
 make it in to this release. What needs to be done to make adding those
 changes to the next release possible?


I'd like to start moving those changes into trunk straight away.

-- 
D. Richard Hipp
d...@sqlite.org
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Stephan Beal
On Wed, Sep 11, 2013 at 7:36 PM, Matt Welland estifo...@gmail.com wrote:

 Sorry, of course the change summary is on the web page. I think it would
 be helpful to paste it into announcement emails.


See the bottom half of the download page link he sent:

http://www.fossil-scm.org/download.html


-- 
- stephan beal
http://wanderinghorse.net/home/stephan/
http://gplus.to/sgbeal
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Jarek Lewandowski


On Windows platform.

W dniu 2013-09-11 21:00, Jarek Lewandowski pisze:

I have problem with https:

HTTPS: Fossil has been compiled without SSL support

jl

___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread David Mason
On 11 September 2013 11:00,  djg...@gmail.com wrote:
 This worked on Windows 2008 R2 64-bit, Windows 7 32-bit, Mountain Lion 10.8.4 
 64-bit.

and Snow Leopard 10.6.8 (and it's i386 so should work everywhere)

Well done!  Thanks  ../Dave
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Jarek Lewandowski

I have problem with https:

HTTPS: Fossil has been compiled without SSL support

jl

___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Richard Hipp
On Wed, Sep 11, 2013 at 3:00 PM, Jarek Lewandowski maxja...@softleg.plwrote:

 I have problem with https:

 HTTPS: Fossil has been compiled without SSL support


I new windows binary with SSL support has been uploaded.

-- 
D. Richard Hipp
d...@sqlite.org
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Jarek Lewandowski

This version works ok.

W dniu 2013-09-11 21:42, Richard Hipp pisze:




On Wed, Sep 11, 2013 at 3:00 PM, Jarek Lewandowski maxja...@softleg.pl
mailto:maxja...@softleg.pl wrote:

I have problem with https:

HTTPS: Fossil has been compiled without SSL support


I new windows binary with SSL support has been uploaded.

--
D. Richard Hipp
d...@sqlite.org mailto:d...@sqlite.org


___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Kees Nuyt
[Default] On Wed, 11 Sep 2013 10:03:58 -0400, Richard Hipp
d...@sqlite.org wrote:

Fossil version 1.27 has been tagged and precompiled binaries have been
uploaded to http://www.fossil-scm.org/download.html

Thanks a ton, Richard!

-- 
Groet, Cordialement, Pozdrawiam, Regards,

Kees Nuyt
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Martin Gagnon
On Wed, Sep 11, 2013 at 10:03 AM, Richard Hipp d...@sqlite.org wrote:

 Fossil version 1.27 has been tagged and precompiled binaries have been
 uploaded to http://www.fossil-scm.org/download.html

 I do this infrequently enough that I keep forgetting exactly how things
 were compiled the previous time.  So please try out the precompiled
 binaries and let me know if you encounter any problems.

 I started a wiki page (
 http://www.fossil-scm.org/fossil/wiki?name=Release+Build+How-To)
 describing how the precompiled binaries are produced.  If adjustments need
 to be made for compatibility purposes, please let me know.  For example,
 will the Windows8 build using MSVC-x86 work for everybody, or do I need to
 redo that build on (say) Windows7 or perhaps using MinGW?  Does the Mac
 binary work on all intel-based Mac systems?  Etc.

 I'll send out an official release announcement once a few people have
 verified the current binaries.


Hi Richard,

I notice from your Release+Build+How+To wiki, you build the OpenBSD release
from devious free shell service. I also have an account on devious and I
just notice they recently upgrade from OpenBSD 4.7 to 4.8. So I guess we
should change 4.7 to 4.8 on the download page too..


-- 
Martin G.
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Christopher Vance
Versions of OpenBSD before 5.2 are obsolete and unsupported.


On 12 September 2013 10:35, Martin Gagnon eme...@gmail.com wrote:

 On Wed, Sep 11, 2013 at 10:03 AM, Richard Hipp d...@sqlite.org wrote:

 Fossil version 1.27 has been tagged and precompiled binaries have been
 uploaded to http://www.fossil-scm.org/download.html

 I do this infrequently enough that I keep forgetting exactly how things
 were compiled the previous time.  So please try out the precompiled
 binaries and let me know if you encounter any problems.

 I started a wiki page (
 http://www.fossil-scm.org/fossil/wiki?name=Release+Build+How-To)
 describing how the precompiled binaries are produced.  If adjustments need
 to be made for compatibility purposes, please let me know.  For example,
 will the Windows8 build using MSVC-x86 work for everybody, or do I need to
 redo that build on (say) Windows7 or perhaps using MinGW?  Does the Mac
 binary work on all intel-based Mac systems?  Etc.

 I'll send out an official release announcement once a few people have
 verified the current binaries.


 Hi Richard,

 I notice from your Release+Build+How+To wiki, you build the OpenBSD
 release from devious free shell service. I also have an account on devious
 and I just notice they recently upgrade from OpenBSD 4.7 to 4.8. So I guess
 we should change 4.7 to 4.8 on the download page too..


 --
 Martin G.

 ___
 fossil-users mailing list
 fossil-users@lists.fossil-scm.org
 http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users




-- 
Christopher Vance
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Richard Hipp
On Wed, Sep 11, 2013 at 8:35 PM, Martin Gagnon eme...@gmail.com wrote:


 I notice from your Release+Build+How+To wiki, you build the OpenBSD
 release from devious free shell service. I also have an account on devious
 and I just notice they recently upgrade from OpenBSD 4.7 to 4.8. So I guess
 we should change 4.7 to 4.8 on the download page too..


Changed to a more generic 4.x.  Updated version numbers for MacOS and
Linux in the same way.


-- 
D. Richard Hipp
d...@sqlite.org
___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Carson Chittom
Stephan Beal sgb...@googlemail.com writes:

 Fossil's testing infrastructure is not as amazing as sqlite's. For each
 release we (normally several of us) run through the following checklist:

 http://www.fossil-scm.org/index.html/doc/trunk/test/release-checklist.wiki

Can I just say, the inclusion of OpenBSD on that checklist as an,
apparently, first-tier platform is one of the the things that makes me
want to continue to use Fossil. 


___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users


Re: [fossil-users] Version 1.27

2013-09-11 Thread Carson Chittom
Richard Hipp d...@sqlite.org writes:

 On Wed, Sep 11, 2013 at 8:35 PM, Martin Gagnon
 eme...@gmail.com wrote:


 I notice from your Release+Build+How+To wiki, you build the OpenBSD
 release from devious free shell service. I also have an account on devious
 and I just notice they recently upgrade from OpenBSD 4.7 to 4.8. So I guess
 we should change 4.7 to 4.8 on the download page too..


 Changed to a more generic 4.x.  Updated version numbers for MacOS and
 Linux in the same way.

Given that the most recent version of OpenBSD is 5.3, and that only the
current and previous releases are supported, is there anything--other
than what James Turner (who I see is the port maintainer) is already
doing--that I can do to ensure that Fossil works properly on OpenBSD?

___
fossil-users mailing list
fossil-users@lists.fossil-scm.org
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users