diff options
author | Marcus Brinkmann <[email protected]> | 2002-01-15 19:53:55 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2002-01-15 19:53:55 +0000 |
commit | af5bfdd49ef57839940c31966d46fc8578792711 (patch) | |
tree | 66b9b36fede14fa805fe1fbd230f72a18f9a0271 | |
parent | bug found: no more crashing when calling signing/encoding functions :-) (diff) | |
download | gpgme-af5bfdd49ef57839940c31966d46fc8578792711.tar.gz gpgme-af5bfdd49ef57839940c31966d46fc8578792711.zip |
2002-01-15 Marcus Brinkmann <[email protected]>
* gpgmeplug.c: Renamed to ...
* gpgme-openpgp.c: ... this. New file.
* gpgsmplug.c: Renamed to ...
* gpgme-smime.c: ... this. new file.
* Makefile.am: Rewritten to use libtool's module functionality.
-rw-r--r-- | gpgmeplug/ChangeLog | 8 | ||||
-rw-r--r-- | gpgmeplug/Makefile.am | 18 | ||||
-rw-r--r-- | gpgmeplug/gpgme-smime.c (renamed from gpgmeplug/gpgsmplug.c) | 0 |
3 files changed, 15 insertions, 11 deletions
diff --git a/gpgmeplug/ChangeLog b/gpgmeplug/ChangeLog index 02ab8e4d..ae94e6bd 100644 --- a/gpgmeplug/ChangeLog +++ b/gpgmeplug/ChangeLog @@ -1,3 +1,11 @@ +2002-01-15 Marcus Brinkmann <[email protected]> + + * gpgmeplug.c: Renamed to ... + * gpgme-openpgp.c: ... this. New file. + * gpgsmplug.c: Renamed to ... + * gpgme-smime.c: ... this. new file. + * Makefile.am: Rewritten to use libtool's module functionality. + 2001-12-19 Marcus Brinkmann <[email protected]> * Makefile.am (lib_LTLIBRARIES): Rename to ... diff --git a/gpgmeplug/Makefile.am b/gpgmeplug/Makefile.am index a55cc24b..3bad5bb8 100644 --- a/gpgmeplug/Makefile.am +++ b/gpgmeplug/Makefile.am @@ -23,18 +23,14 @@ # ## Process this file with automake to produce Makefile.in - INCLUDES = -I$(top_srcdir)/gpgme -libgpgmeplug_la_LIBADD = ../gpgme/libgpgme.la -libgpgsmplug_la_LIBADD = ../gpgme/libgpgme.la - -BUILT_SOURCES = - -noinst_LTLIBRARIES = libgpgmeplug.la libgpgsmplug.la +pkglib_LTLIBRARIES = gpgme-openpgp.la gpgme-smime.la -libgpgmeplug_la_LDFLAGS = -shared -Wl,-soname,libgpgmeplug.so -libgpgsmplug_la_LDFLAGS = -shared -Wl,-soname,libgpgsmplug.so +gpgme_openpgp_la_SOURCES = cryptplug.h gpgmeplug.c +gpgme_openpgp_la_LIBADD = ../gpgme/libgpgme.la +gpgme_openpgp_la_LDFLAGS = -module -avoid-version -libgpgmeplug_la_SOURCES = cryptplug.h gpgmeplug.c -libgpgsmplug_la_SOURCES = cryptplug.h gpgsmplug.c +gpgme_smime_la_SOURCES = cryptplug.h gpgme-smime.c +gpgme_smime_la_LIBADD = ../gpgme/libgpgme.la +gpgme_smime_la_LDFLAGS = -module -avoid-version diff --git a/gpgmeplug/gpgsmplug.c b/gpgmeplug/gpgme-smime.c index 395b9a2d..395b9a2d 100644 --- a/gpgmeplug/gpgsmplug.c +++ b/gpgmeplug/gpgme-smime.c |