Re: [fossil-users] No rule to make target 'src/email.c', ...

2018-06-21 Thread Eric Dillon
Nice quick fix. Compiles now. Thanks.

On Thu, Jun 21, 2018, 10:03 AM Richard Hipp  wrote:

> On 6/21/18, Eric Dillon  wrote:
> > Fails to compile on Win32 VS2013 (12.0)
> >
> > email.obj : error LNK2019: unresolved external symbol _popen referenced
> in
> > function _email_send
>
> Thanks for the report.  Fixed now.
>
> --
> 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] No rule to make target 'src/email.c', ...

2018-06-21 Thread Eric Dillon
Fails to compile on Win32 VS2013 (12.0)

email.obj : error LNK2019: unresolved external symbol _popen referenced in
function _email_send

On Wed, Jun 20, 2018, 3:51 PM Florian Balmer 
wrote:

> Richard Hipp:
>
> > It is reassuring to know that so many people routinely build Fossil
> > from the trunk sources :-)
>
> À propos build:
>
> I have accidentally set FOSSIL_ENABLE_MINIZ=1 (in win/Makefile.msc),
> and this doesn't seem to work, probably because src/shell.c includes
> zlib.h without examining FOSSIL_ENABLE_MINIZ.
>
> Not sure if this is important, or if it's even possible for
> src/shell.c to support FOSSIL_ENABLE_MINIZ, but I'd rather let you
> know.
>
> --Florian
> ___
> 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] fossil-users Digest, Vol 121, Issue 9

2018-02-14 Thread Eric Dillon
>From "fossil ui", go to "admin > settings". In diff-command put the path
and executable name for winmerge.

My winmerge is a portable installation, so my diff-command is set as ...

C:\bin\winmerge-2.14.0\winmergeu.exe

Works great.

On Tue, Feb 13, 2018, 1:30 PM  wrote:

> I love WinMerge and was unable to trigger the diff from fossil(many
> versions ago) as you suggest?
> Can you describe how WinMerge is installed and fossil settings that worked
> for you?
> For now, I cut and paste, which is a drag.
>
> Thanks!
>
> On Tue, Feb 13, 2018 at 1:11 PM, Ron W  wrote:
>
>> On Tue, Feb 13, 2018 at 7:00 AM, <
>> fossil-users-requ...@lists.fossil-scm.org> wrote:
>>>
>>> Date: Tue, 13 Feb 2018 11:42:59 +0100
>>> From: Gilles 
>>> Subject: Re: [fossil-users] Windows GUI that allows diff between two,
>>> revisions?
>>>
>>> Thanks for the tip. Fuel does have an internal web browser:
>>>
>>>
>>> https://s14.postimg.org/efgcfmwj5/Fossil.Fuel.history.internal.browser.png
>>>
>>> If there's no Windows alternative to Fuel, it looks like it's either the
>>> web UI or the command line.
>>>
>>> Is there an easy way to compare two revisions of a file while the
>>> repository is closed (ie. not a comparison between a revision in the
>>> repo and a live file in the workspace), possibly using WinMerge, so I
>>> can easily see what the changes are, check out the latest verison, and
>>> copy/paste ?
>>>
>>
>> In the Fossil "web UI", from the timeline, select a commit. Scroll down
>> to the file of interest and click on it to show that file's history. In the
>> "revision graph" (on the left), click the version you want to compare from
>> (the node will turn red), then the version you want to compare to. This
>> will display (in the web browser), a differ of the 2 versions.
>>
>>  To use WinMerge, you need to configure Fossil to use that as the
>> external diff (or gdiff) tool. then from the command line:
>>
>>fossil diff --from VERSION --to VERSION
>>
>> This will launch WinMerge (with temporary copies) to display the
>> differences between the 2 versions. However, Fossil will ignore any changes
>> you make in WinMerge.
>>
>> Until either Fuel is updated (possibly by some one forking it) or some
>> one creates a new GUI front end for Fossil (possibly using Electronic or
>> similar), this is the best you can get.
>>
>>
>> ___
>> 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
>
___
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] strange problem with graphical diff

2017-08-23 Thread Eric Dillon
On Wed, Aug 23, 2017, 12:19 PM Richard Hipp  wrote:

And it should now be fixed on trunk.
>

Verified. Thanks.
___
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] strange problem with graphical diff

2017-08-23 Thread Eric Dillon
Here's a bisect of the error on Windows.

11:39:32 $ fo bisect good
bisect complete
  2 BAD 2017-08-21 12:18:49 810dd031ec3ee1d6
  5 BAD 2017-08-12 18:24:29 9eea719af68932ad
  6 BAD 2017-08-12 18:20:26 9690d370e0714a43
  7 BAD 2017-08-12 18:15:36 3b191c984b831571
  8 GOOD2017-08-12 04:19:56 45a3d4b1670f123e CURRENT
  4 GOOD2017-08-11 16:00:55 3ebbe7bcaa8f2221
  3 GOOD2017-07-28 18:41:13 04de083ec842c3f2
  1 GOOD2017-07-10 18:19:00 b1a7527b73a906a0


On Wed, Aug 23, 2017, 11:20 AM Richard Hipp  wrote:

> On 8/23/17, j. van den hoff  wrote:
> > unable to create directory /var
>
> You might be able to work around the problem by adding the
> --no-dir-symlinks command-line option.
> --
> 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] strange problem with graphical diff

2017-08-23 Thread Eric Dillon
Here is the error generated in Windows. Works correctly without the --to
parameter.

10:19:38 $ fo gdiff --from d5b015 --to 810dd0

Index: src/http_transport.c
==
the
[C:\Users\xx\AppData\Local\Temp\/src/http_transport.c-v1-6pCA3817v8hKvMt.txt]
argument to the "C:\BIN\WinMerge-2.14.0-exe\winmergeu.exe" command contains
a character (ascii 0x5c) that is a security risk

On Wed, Aug 23, 2017, 10:24 AM j. van den hoff  wrote:

> On Wed, 23 Aug 2017 17:14:05 +0200, Warren Young 
> wrote:
>
> > On Aug 23, 2017, at 7:21 AM, Richard Hipp  wrote:
> >>
> >> On 8/23/17, j. van den hoff  wrote:
> >>> unable to create directory /var
> >>
> >> It is trying to create a temporary file in which to store the one of
> >> the two sides of the diff.  Can you trace the problem by running in a
> >> debugger?
> >
> > This sounds like a repeat of:
> >
> >
> https://www.mail-archive.com/fossil-users@lists.fossil-scm.org/msg24920.html
> >
> > Basically, it’s an artifact of the way macOS symlinks /var, /tmp, etc.
> > to their actual locations, which doesn’t happen on other *ix type
> > systems, so the bug is never tickled there.
>
> yes, this looks like the exact same problem, see my previous mail: fossil
> detects that `/var' exists while not being a directory and bails out
> (which it should not but rather resolve the link and check whether the
> resolved link is a directory...).
>
> I reiterate that I wonder what has changed recently (either on the side of
> OSX or fossil) since the problem was definitely non-existent some time
> ago? and why does it work when omitting `--to' from the `gdiff' call? no
> idea...
>
> more important: is a fix/work-around possible (apart from telling me to do
> it myself which I would have a hard time with ...)
>
>
> > ___
> > fossil-users mailing list
> > fossil-users@lists.fossil-scm.org
> > http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users
>
>
> --
> Using Opera's revolutionary email client: http://www.opera.com/mail/
> ___
> 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