diff options
author | Werner Koch <[email protected]> | 2002-03-26 10:15:22 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2002-03-26 10:15:22 +0000 |
commit | dd2cb388a99054a6c72ef9cbc19fbd74cf1bc6a4 (patch) | |
tree | 7f8c10b8dede9abbf513e6817ffcda921cb46cd2 | |
parent | * gpgmeplug.c: Converted it to real C; i.e. use standard comments - (diff) | |
download | gpgme-dd2cb388a99054a6c72ef9cbc19fbd74cf1bc6a4.tar.gz gpgme-dd2cb388a99054a6c72ef9cbc19fbd74cf1bc6a4.zip |
* Makefile.am (libgpgme_la_SOURCES): Add mutex.h
-rw-r--r-- | gpgme/ChangeLog | 8 | ||||
-rw-r--r-- | gpgme/Makefile.am | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog index 4d982f30..cf713cdf 100644 --- a/gpgme/ChangeLog +++ b/gpgme/ChangeLog @@ -1,7 +1,11 @@ +2002-03-26 Werner Koch <[email protected]> + + * Makefile.am (libgpgme_la_SOURCES): Add mutex.h + 2002-03-21 Werner Koch <[email protected]> - * util.h (struct) [!HAVE_FOPENCOOKIE]: Make sure off_t and ssize_t - are defined. + * util.h [!HAVE_FOPENCOOKIE]: Make sure off_t and ssize_t are + defined. 2002-03-18 Marcus Brinkmann <[email protected]> diff --git a/gpgme/Makefile.am b/gpgme/Makefile.am index 9ce45abf..fe2fc7fa 100644 --- a/gpgme/Makefile.am +++ b/gpgme/Makefile.am @@ -67,6 +67,7 @@ libgpgme_la_SOURCES = \ engine.c engine.h \ sema.h io.h \ ${system_components} \ + mutex.h \ gpgme.c debug.c version.c errors.c errors.c : gpgme.h @@ -74,3 +75,4 @@ errors.c : gpgme.h status-table.h : rungpg.h $(srcdir)/mkstatus < $(srcdir)/rungpg.h > status-table.h + |