public inbox for cygwin-apps@cygwin.com
 help / color / mirror / Atom feed
From: Bill Zissimopoulos <billziss@navimatics.com>
To: "cygwin-apps@cygwin.com" <cygwin-apps@cygwin.com>
Subject: Re: [ITP] FUSE 2.8
Date: Wed, 27 Jul 2016 17:45:00 -0000	[thread overview]
Message-ID: <D3BE3BEA.A981%billziss@navimatics.com> (raw)
In-Reply-To: <loom.20160727T105350-795@post.gmane.org>

On 7/27/16, 2:03 AM, Mark Geisert wrote:


>Bill Zissimopoulos writes:
>> To test that things work, clone my sshfs repo from:
>> 
>>     https://github.com/billziss-gh/sshfs
>> 
>> And issue the following commands:
>> 
>>     $ autoreconf -i
>>     $ ./configure
>
>On my test machine (Win7 64, Cygwin 64) I get the errors shown below.
>But first let me ask...

Please be mindful if you intend to test that the current released binary
of WinFsp does not support Windows 7. This is because the last release
erroneously uses a Windows 8 only API (GetOverlappedResultEx).

>> PS: I am going AWOL this Friday.
>
>If you don't mind my asking, do you mean for the day, for a couple
>weeks, for ever, ???

:-D

Sorry! I am realizing now this could be taken in a darker way than I
intended. I just meant I am going on vacation and that I have to attend to
some family matters. It is likely I will not be able to participate in
discussions for a few weeks.


>Here is the tail end of the ./configure output:
>--------8<--------
>configure: error: Package requirements (fuse >= 2.3 glib-2.0 gthread-
>2.0) were not met:
>
>No package 'fuse' found
>No package 'glib-2.0' found
>No package 'gthread-2.0' found
>-------->8--------
>
>The following shows I have glib2 installed.  I can't find a gthread
>package for Cygwin.  I've compiled cygfuse; what cygport command will
>satisfy the package reference for configure (newbie question this)?
>
>$ cygcheck -c | egrep 'fuse|glib|gthread'
>libglib2.0_0       2.46.2-4      OK

You will need libglib2.0-devel. This includes gthread-2.0 as well.

The reason it cannot find the FUSE package is because the cygfuse package
has not been “installed”. Here is how I build and install it.

    # how to build
    $ cd cygfuse
    $ git clean -dfx
    $ make cygport

    # list tarball contents
    $ tar taf fuse-2.8-4.x86_64/dist/fuse/fuse-2.8-4.tar.xz

    # how to install
    $ tar -C/ -xaf fuse-2.8-4.x86_64/dist/fuse/fuse-2.8-4.tar.xz

    # how to uninstall
    $ tar taf fuse-2.8-4.x86_64/dist/fuse/fuse-2.8-4.tar.xz | sed
's@.*@/&@' | xargs rm

You can verify that the cygfuse package has been installed properly:

    $ ls -l /usr/bin/cygfuse*
    -rwxr-xr-x 1 billziss None 14336 Jul 27 10:32 /usr/bin/cygfuse-2.8.dll

    $ ls -l /usr/include/fuse/
    total 28
    -rw-r--r-- 1 billziss None 7052 Jul 27 10:32 fuse.h
    -rw-r--r-- 1 billziss None 3912 Jul 27 10:32 fuse_common.h
    -rw-r--r-- 1 billziss None 3557 Jul 27 10:32 fuse_opt.h
    -rw-r--r-- 1 billziss None 8455 Jul 27 10:32 winfsp_fuse.h


    $ ls -l /usr/lib/libfuse*
    -rw-r--r-- 1 billziss None 19626 Jul 27 10:32
/usr/lib/libfuse-2.8.dll.a
    lrwxrwxrwx 1 billziss None    17 Jul 27 10:32 /usr/lib/libfuse.dll.a
-> libfuse-2.8.dll.a

    $ ls -ls /usr/lib/pkgconfig/fuse.pc
    1 -rw-r--r-- 1 billziss None 190 Jul 27 10:32
/usr/lib/pkgconfig/fuse.pc



After this SSHFS configure should be able to find the fuse.pc pkg-config
file and complete the SSHFS configuration.

Bill


  reply	other threads:[~2016-07-27 17:45 UTC|newest]

Thread overview: 88+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-22 11:59 Adrien JUND
2016-07-22 17:55 ` Bill Zissimopoulos
2016-07-22 19:56   ` Adrien JUND
2016-07-23  0:23     ` Bill Zissimopoulos
2016-07-23 10:40       ` Corinna Vinschen
2016-07-23 16:44         ` Bill Zissimopoulos
2016-07-23 17:48           ` Corinna Vinschen
2016-07-23 18:34             ` Bill Zissimopoulos
2016-07-25  7:35               ` Corinna Vinschen
2016-07-25 21:20                 ` Bill Zissimopoulos
2016-07-26  6:28                   ` Mark Geisert
2016-07-26  8:45                     ` Herbert Stocker
2016-07-26 12:40                       ` Adrien JUND
2016-07-26 18:13                         ` Mark Geisert
2016-07-26 18:41                           ` Bill Zissimopoulos
2016-07-26 17:23                     ` Bill Zissimopoulos
2016-07-26 18:38                     ` Bill Zissimopoulos
2016-07-26 19:02                       ` Mark Geisert
2016-07-26 19:10                         ` Bill Zissimopoulos
2016-07-26 23:22                         ` Bill Zissimopoulos
2016-07-27  9:03                           ` Mark Geisert
2016-07-27 17:45                             ` Bill Zissimopoulos [this message]
2016-07-28  9:17                               ` Mark Geisert
2016-07-28 16:36                                 ` Bill Zissimopoulos
2016-07-28 17:29                                   ` Mark Geisert
2016-07-28 17:43                                     ` Bill Zissimopoulos
2016-07-28 19:14                                     ` Bill Zissimopoulos
2016-07-28 19:21                                       ` Bill Zissimopoulos
2016-07-28 19:59                                       ` Mark Geisert
2016-07-28 20:08                                         ` Corinna Vinschen
2016-07-28 20:04                                       ` Corinna Vinschen
2016-07-28 21:18                                         ` Bill Zissimopoulos
2016-07-29  0:05                                           ` Mark Geisert
2016-07-29  0:17                                             ` Bill Zissimopoulos
2016-07-29  0:27                                               ` Bill Zissimopoulos
2016-07-29  8:19                                                 ` Mark Geisert
2016-07-29  8:51                                                   ` Corinna Vinschen
2016-07-29  9:15                                                     ` Mark Geisert
2016-07-29  9:48                                                       ` Corinna Vinschen
2016-08-16 17:32                                                         ` Corinna Vinschen
2016-08-17  8:27                                                           ` Mark Geisert
2016-08-17  9:14                                                             ` Corinna Vinschen
2016-08-22  9:43                                                               ` Mark Geisert
2016-08-22 11:54                                                                 ` Corinna Vinschen
2016-08-25  8:49                                                                 ` Bill Zissimopoulos
2016-09-05  9:36                                                                   ` Mark Geisert
2016-09-05 11:20                                                                     ` Adrien JUND
2016-09-05 20:16                                                                       ` Mark Geisert
2016-09-06 21:15                                                                         ` Bill Zissimopoulos
2016-09-07  5:22                                                                         ` Herbert Stocker
2016-09-08  8:13                                                                           ` Mark Geisert
2016-09-06 22:07                                                                       ` Mark Geisert
2016-09-08  8:03                                                                         ` cygfuse (was Re: [ITP] FUSE 2.8) Mark Geisert
2016-09-20 21:12                                                                           ` Bill Zissimopoulos
2016-09-21  5:33                                                                             ` cygfuse Mark Geisert
2016-09-21  6:01                                                                               ` cygfuse Bill Zissimopoulos
2016-09-21  6:13                                                                             ` cygfuse (was Re: [ITP] FUSE 2.8) Adrien JUND
2016-09-06 21:13                                                                     ` [ITP] FUSE 2.8 Bill Zissimopoulos
2016-09-08 12:01                                                                       ` Corinna Vinschen
2016-09-08 16:58                                                                         ` Bill Zissimopoulos
2016-08-25  8:58                                                                 ` Bill Zissimopoulos
2016-07-29 15:35                                                   ` Bill Zissimopoulos
2016-07-29 18:35                                                     ` Mark Geisert
2016-07-29  7:50                                     ` Bill Zissimopoulos
2016-07-29  8:02                                       ` Mark Geisert
2016-07-26 20:07                       ` Adrien JUND
2016-07-26 20:56                         ` Bill Zissimopoulos
  -- strict thread matches above, loose matches on Subject: below --
2016-07-17  1:03 Bill Zissimopoulos
2016-07-17 15:43 ` David Stacey
2016-07-17 21:18 ` Marco Atzeri
2016-07-18 19:15   ` Bill Zissimopoulos
2016-07-18  8:19 ` Corinna Vinschen
2016-07-18 19:43   ` Bill Zissimopoulos
2016-07-18 19:52     ` Bill Zissimopoulos
2016-07-19  9:41       ` Corinna Vinschen
2016-07-19 17:27         ` Bill Zissimopoulos
2016-07-20  8:52           ` Corinna Vinschen
2016-07-21 22:12             ` Bill Zissimopoulos
2016-07-22  7:59               ` Corinna Vinschen
2016-07-22 12:30                 ` Adrien JUND
2016-07-22 12:53                   ` Marco Atzeri
2016-07-22 13:41                     ` Corinna Vinschen
2016-07-22 17:58                     ` Bill Zissimopoulos
2016-07-22 19:58                       ` Marco Atzeri
2016-07-23  0:31                         ` Bill Zissimopoulos
2016-07-23  6:02                           ` Marco Atzeri
2016-07-23  6:33                             ` Bill Zissimopoulos
2016-07-22 17:55                 ` Bill Zissimopoulos

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=D3BE3BEA.A981%billziss@navimatics.com \
    --to=billziss@navimatics.com \
    --cc=cygwin-apps@cygwin.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).