diff options
author | Marcus Brinkmann <[email protected]> | 2005-10-06 11:06:25 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2005-10-06 11:06:25 +0000 |
commit | 54844a992fd8aea110ac015c15fdb5b2dbfe4231 (patch) | |
tree | 00524da9c06e6e768346b572d686cdb16cc59f06 | |
parent | doc/ (diff) | |
download | gpgme-54844a992fd8aea110ac015c15fdb5b2dbfe4231.tar.gz gpgme-54844a992fd8aea110ac015c15fdb5b2dbfe4231.zip |
2005-10-06 Marcus Brinkmann <[email protected]>
* Makefile.am (gpgme.dll gpgme.dll.a): Use $(srcdir) for
gpgme.def.
-rw-r--r-- | gpgme/ChangeLog | 3 | ||||
-rw-r--r-- | gpgme/Makefile.am | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog index 62c9ba49..d77adcf5 100644 --- a/gpgme/ChangeLog +++ b/gpgme/ChangeLog @@ -1,5 +1,8 @@ 2005-10-06 Marcus Brinkmann <[email protected]> + * Makefile.am (gpgme.dll gpgme.dll.a): Use $(srcdir) for + gpgme.def. + * gpgme.h (gpgme_free): New prototype. * data-mem.c (gpgme_free): New function. * libgpgme.vers (GPGME_1.1): Add gpgme_free. diff --git a/gpgme/Makefile.am b/gpgme/Makefile.am index 994d5761..ef12d460 100644 --- a/gpgme/Makefile.am +++ b/gpgme/Makefile.am @@ -138,7 +138,7 @@ install-exec-hook: $(STRIP) $(DESTDIR)$(libdir)/gpgme.dll gpgme.dll gpgme.dll.a: gpgme.def $(w32_o_files) versioninfo.o - $(CC) -shared -o gpgme.dll gpgme.def $(w32_o_files) \ + $(CC) -shared -o gpgme.dll $(srcdir)/gpgme.def $(w32_o_files) \ versioninfo.o @GPG_ERROR_LIBS@ -Wl,--out-implib,gpgme.dll.a |