* Makefile.am: Create libtool libraries.

* Makefile.am (libgpgme_la_LIBADD): Use libtool libraries.

* Makefile.am: Create libtool libraries
This commit is contained in:
Werner Koch 2002-04-26 12:38:27 +00:00
parent 9b28b6b209
commit ffc9f44932
7 changed files with 18 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2002-04-26 Werner Koch <wk@gnupg.org>
* Makefile.am: Create libtool libraries
2002-04-04 Werner Koch <wk@gnupg.org> 2002-04-04 Werner Koch <wk@gnupg.org>
* assuan-buffer.c (my_log_prefix): New. Use it for all i/o debug * assuan-buffer.c (my_log_prefix): New. Use it for all i/o debug

View File

@ -24,11 +24,11 @@ INCLUDES = -I.. -I$(top_srcdir)/include
BUILT_SOURCES = assuan-errors.c BUILT_SOURCES = assuan-errors.c
MOSTLYCLEANFILES = assuan-errors.c MOSTLYCLEANFILES = assuan-errors.c
noinst_LIBRARIES = libassuan.a noinst_LTLIBRARIES = libassuan.la
#libassuan_a_LDFLAGS = #libassuan_a_LDFLAGS =
libassuan_a_SOURCES = \ libassuan_la_SOURCES = \
assuan.h \ assuan.h \
assuan-defs.h \ assuan-defs.h \
assuan-util.c \ assuan-util.c \

View File

@ -1,3 +1,7 @@
2002-04-26 Werner Koch <wk@gnupg.org>
* Makefile.am (libgpgme_la_LIBADD): Use libtool libraries.
2002-04-25 Marcus Brinkmann <marcus@g10code.de> 2002-04-25 Marcus Brinkmann <marcus@g10code.de>
* rungpg.c (_gpgme_gpg_release): Call gpgme_data_release on * rungpg.c (_gpgme_gpg_release): Call gpgme_data_release on

View File

@ -32,7 +32,7 @@ libgpgme_la_LDFLAGS = -version-info \
@LIBGPGME_LT_CURRENT@:@LIBGPGME_LT_REVISION@:@LIBGPGME_LT_AGE@ @LIBGPGME_LT_CURRENT@:@LIBGPGME_LT_REVISION@:@LIBGPGME_LT_AGE@
if BUILD_ASSUAN if BUILD_ASSUAN
AM_CPPFLAGS = -I$(top_srcdir)/assuan AM_CPPFLAGS = -I$(top_srcdir)/assuan
libgpgme_la_LIBADD = ../assuan/libassuan.a ../jnlib/libjnlib.a libgpgme_la_LIBADD = ../assuan/libassuan.la ../jnlib/libjnlib.la
endif endif
if HAVE_DOSISH_SYSTEM if HAVE_DOSISH_SYSTEM

View File

@ -274,7 +274,7 @@ _gpgme_key_new_secret ( GpgmeKey *r_key )
* gpgme_key_ref: * gpgme_key_ref:
* @key: Key object * @key: Key object
* *
* To safe memory the Key objects implement reference counting. * To safe memory the Key objects implements reference counting.
* Use this function to bump the reference counter. * Use this function to bump the reference counter.
**/ **/
void void

View File

@ -1,3 +1,7 @@
2002-04-26 Werner Koch <wk@gnupg.org>
* Makefile.am: Create libtool libraries.
2002-04-04 Werner Koch <wk@gnupg.org> 2002-04-04 Werner Koch <wk@gnupg.org>
* logging.c (log_get_prefix): New. * logging.c (log_get_prefix): New.

View File

@ -22,11 +22,11 @@ EXTRA_DIST = README
INCLUDES = -I$(top_srcdir)/intl INCLUDES = -I$(top_srcdir)/intl
noinst_LIBRARIES = libjnlib.a noinst_LTLIBRARIES = libjnlib.la
#libjnlib_a_LDFLAGS = #libjnlib_a_LDFLAGS =
libjnlib_a_SOURCES = libjnlib-config.h \ libjnlib_la_SOURCES = libjnlib-config.h \
xmalloc.c xmalloc.h \ xmalloc.c xmalloc.h \
stringhelp.c stringhelp.h \ stringhelp.c stringhelp.h \
argparse.c argparse.h \ argparse.c argparse.h \