2009-10-20 Marcus Brinkmann <marcus@g10code.com>

* configure.ac: Check for fusermount and encfs.
This commit is contained in:
Marcus Brinkmann 2009-10-20 14:30:35 +00:00
parent 61b351854b
commit 68f8014c5f
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2009-10-20 Marcus Brinkmann <marcus@g10code.com>
* configure.ac: Check for fusermount and encfs.
2009-10-16 Marcus Brinkmann <marcus@g10code.com>
* configure.ac: Check for libassuan instead of libassuan-pth.

View File

@ -73,7 +73,7 @@ static void
run_umount_helper (const char *mountpoint)
{
gpg_error_t err;
const char pgmname[] = "/usr/bin/fusermount";
const char pgmname[] = FUSERMOUNT;
const char *args[3];
args[0] = "-u";
@ -254,7 +254,7 @@ run_encfs_tool (ctrl_t ctrl, enum encfs_cmds cmd,
goto leave;
}
pgmname = "/usr/bin/encfs";
pgmname = ENCFS;
idx = 0;
argv[idx++] = "-f";
if (opt.verbose)