• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

build-aux/H22-Mar-2021-25,85821,580

contrib/H22-Mar-2021-3019

doc/H22-Mar-2021-7,9476,442

m4/H22-Mar-2021-9,4568,501

src/H22-Mar-2021-18,68313,993

tests/H22-Mar-2021-4,0333,205

AUTHORSH A D22-Mar-20212 KiB7449

COPYINGH A D15-Mar-201334.2 KiB677553

COPYING.LIBH A D15-Mar-201325.9 KiB

ChangeLogH A D22-Mar-202134.1 KiB1,021751

ChangeLog-2011H A D15-Mar-201311.1 KiB446263

INSTALLH A D15-Mar-20139.1 KiB232176

Makefile.amH A D15-Nov-20172.5 KiB7742

Makefile.inH A D22-Mar-202128.8 KiB914792

NEWSH A D22-Mar-202118.1 KiB580376

READMEH A D22-Mar-20212 KiB5337

README.GITH A D15-Mar-20132.2 KiB5040

THANKSH A D15-Mar-2013505 119

TODOH A D15-Mar-2013719 1714

VERSIONH A D22-Mar-20216 21

aclocal.m4H A D22-Mar-202142.8 KiB1,1811,073

autogen.rcH A D13-Dec-2018232 1410

autogen.shH A D13-Dec-201814 KiB514403

config.h.inH A D22-Mar-20216.4 KiB253172

configureH A D22-Mar-2021501.7 KiB17,41514,560

configure.acH A D22-Mar-202114.5 KiB487419

mkinstalldirsH A D15-Mar-20133.5 KiB163112

README

1                              Libassuan
2                             ===========
3
4    Copyright (C) 2001-2013 Free Software Foundation, Inc.
5    Copyright (C) 2001-2021 g10 Code GmbH
6
7
8    This is a general purpose IPC library which is for example used
9    GnuPG, GPGME and some other software.
10
11    See COPYING.LIB on how to share, modify and distribute the
12    software itself (LGPLv2.1+) and COPYING for the documentation
13    (GPLv3+).
14
15    Please send bug report to the gnupg-devel mailing list or enter
16    them into the gnupg bug tracker at https://bugs.gnupg.org using the
17    category "libassuan".
18
19    The primary FTP site is https://gnupg.org/ftp/gcrypt/libassuan.
20
21
22    Notes for Windows CE:
23    ----------------------
24
25    Libassuan supports WindowsCE (tested with WindowsMobile 6.5).  To
26    install it, copy libassuan-0.dll into a location where DLL are found
27    and install the included gpgcedev driver: First copy "gpgcedev.dll"
28    into the root directory, second run the included program gpgcemgr on
29    the device: "gpgcemgr --register".  This creates the necessary
30    registry keys.  In case the copy step fails, the driver may still be
31    in use: Close all applications using that driver, run "gpgcemgr
32    --deactivate" to deactivate the running driver and try again.
33
34    Registry keys created by "gpgcemgr --register" are:
35
36       Drivers\\GnuPG_Device\dll    -> "gpgcedev.dll"
37       Drivers\\GnuPG_Device\prefix -> "GPG"
38       Drivers\\GnuPG_Device\Index  -> 1      (dword)
39
40
41    Contact
42    -------
43
44    See the file AUTHORS.
45
46    Commercial grade support for Libassuan and GnuPG is available; for
47    a listing of offers see https://www.gnupg.org/service.html .
48    Maintaining and improving this software is costly.  Since 2001,
49    g10 Code GmbH, a German company owned and headed by GnuPG's
50    principal author Werner Koch, is bearing the majority of these
51    costs.  To help them carry on this work, they need your support.
52    See https://gnupg.org/donate/ .
53

README.GIT

1If you are building from GIT, run the script
2
3./autogen.sh
4
5first, to make sure that you have all the necessary maintainer tools
6are installed and to build the actual configuration files.  If you
7have just checked out from GIT, you should add the option "--force" to
8autogen.sh so that meta data is noticed by autom4te.cache.  Then run
9
10./configure --enable-maintainer-mode
11
12followed by the usual make.
13
14If autogen.sh complains about insufficient versions of the required
15tools, or the tools are not installed, you may use environment
16variables to override the default tool names:
17
18 AUTOMAKE_SUFFIX  is used as a suffix for all tools from the automake
19                  package.  For example
20                     AUTOMAKE_SUFFIX="-1.7" ./autogen.sh
21                  uses "automake-1.7" and "aclocal-1.7.
22 AUTOMAKE_PREFIX  is used as a prefix for all tools from the automake
23                  page and may be combined with AUTOMAKE_SUFFIX. e.g.:
24                    AUTOMAKE_PREFIX=/usr/foo/bin ./autogen.sh
25                  uses "automake" and "aclocal" in the /usr/foo/bin
26                  directory.
27 AUTOCONF_SUFFIX  is used as a suffix for all tools from the automake
28                  package
29 AUTOCONF_PREFIX  is used as a prefix for all tools from the automake
30                  package
31 GETTEXT_SUFFIX   is used as a suffix for all tools from the gettext
32                  package
33 GETTEXT_PREFIX   is used as a prefix for all tools from the gettext
34                  package
35
36It is also possible to use the variable name AUTOMAKE, AUTOCONF,
37ACLOCAL, AUTOHEADER, GETTEXT and MSGMERGE to directly specify the name
38of the programs to run.  It is however better to use the suffix and
39prefix forms as described above because that does not require
40knowledge about the actual tools used by autogen.sh.
41
42
43Please don't use autopoint, libtoolize or autoreconf unless you are
44the current maintainer and want to update the standard configuration
45files.  All those files should be in GIT and only updated manually
46if the maintainer decides that newer versions are required.  The
47maintainer should also make sure that the required version of automake
48et al. are properly indicated at the top of configure.ac and take care
49to copy the files and not merely use symlinks.
50