diff options
Diffstat (limited to 'branches/gpgme-1-0-branch/assuan/README.1st')
-rw-r--r-- | branches/gpgme-1-0-branch/assuan/README.1st | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/branches/gpgme-1-0-branch/assuan/README.1st b/branches/gpgme-1-0-branch/assuan/README.1st new file mode 100644 index 00000000..6e8d4ec8 --- /dev/null +++ b/branches/gpgme-1-0-branch/assuan/README.1st @@ -0,0 +1,25 @@ +This is a modified copy of the libassuan library. Don't modify it, +but instead modify the original Assuan library and merge the changes +back into this copy. + +The changes to the original libassuan, that have to preserved when +updating this directory, are: + +* Makefile.am +** Build the library with libtool as a convenience library, which can + be linked into the shared library GPGME. +** Do not install the library or the header file. +** Define -D_ASSUAN_IN_GPGME_BUILD_ASSUAN to wrap some POSIX functions + with ATH replacements. + +* assuan.h +** Define _ASSUAN_IN_GPGME to enable GPGME specific code. +** Put all exported Assuan functions in the _gpgme namespace. +** Also wrap all system functions that are wrapped by GNU Pth to + _gpgme wrappers. + +* assuan-io.c +** Don't try to support GNU Pth here. + +* assuan-pipe-connect.c +** Do not install SIGPIPE signal handler here. |