From b2a9a14d0bbc5c135848c2077539f164362ec697 Mon Sep 17 00:00:00 2001 From: Frederic Peters Date: Wed, 18 Aug 2004 14:39:00 +0000 Subject: properly use libtool convenience libraries (intend is to build correctly on hppa) --- python/Makefile.am | 8 ++++---- python/environs/Makefile.am | 4 ++-- python/protocols/Makefile.am | 4 ++-- python/protocols/elements/Makefile.am | 4 ++-- python/xml/Makefile.am | 4 ++-- 5 files changed, 12 insertions(+), 12 deletions(-) (limited to 'python') diff --git a/python/Makefile.am b/python/Makefile.am index 66ac3b27..485b0f13 100644 --- a/python/Makefile.am +++ b/python/Makefile.am @@ -18,10 +18,10 @@ mylibs = $(top_builddir)/lasso/liblasso.la lassomod_la_SOURCES = lassomod.c py_lasso.c utils.c wrap_objs.c lassomod_la_LIBADD = $(mylibs) \ - ./protocols/elements/libelements.a \ - ./protocols/libprotocols.a \ - ./xml/libxml.a \ - ./environs/libenvirons.a + ./protocols/elements/libelements.la \ + ./protocols/libprotocols.la \ + ./xml/libxml.la \ + ./environs/libenvirons.la EXTRA_DIST = lassomod.h py_lasso.h utils.h wrap_objs.h \ generator_lasso_strings.py lasso.py lasso_strings.py \ diff --git a/python/environs/Makefile.am b/python/environs/Makefile.am index 05211ed8..9b5cf85e 100644 --- a/python/environs/Makefile.am +++ b/python/environs/Makefile.am @@ -10,8 +10,8 @@ INCLUDES = \ ENVSOURCES = py_federation_termination.c py_lecp.c py_login.c py_logout.c py_profile.c py_register_name_identifier.c py_server.c py_session.c py_identity.c -noinst_LIBRARIES = libenvirons.a -libenvirons_a_SOURCES = $(ENVSOURCES) +noinst_LTLIBRARIES = libenvirons.la +libenvirons_la_SOURCES = $(ENVSOURCES) EXTRA_DIST = $(ENVSOURCES) py_federation_termination.h py_lecp.h py_login.h py_logout.h py_profile.h py_register_name_identifier.h py_server.h py_session.h py_identity.h diff --git a/python/protocols/Makefile.am b/python/protocols/Makefile.am index eb0001a9..31542662 100644 --- a/python/protocols/Makefile.am +++ b/python/protocols/Makefile.am @@ -21,8 +21,8 @@ PROTSOURCES = \ py_register_name_identifier_response.c -libprotocols_a_SOURCES = $(PROTSOURCES) -noinst_LIBRARIES = libprotocols.a +libprotocols_la_SOURCES = $(PROTSOURCES) +noinst_LTLIBRARIES = libprotocols.la EXTRA_DIST = \ $(PROTSOURCES) \ diff --git a/python/protocols/elements/Makefile.am b/python/protocols/elements/Makefile.am index 8d2c1036..04d86529 100644 --- a/python/protocols/elements/Makefile.am +++ b/python/protocols/elements/Makefile.am @@ -1,7 +1,7 @@ ELEMSOURCES = py_assertion.c py_authentication_statement.c -noinst_LIBRARIES = libelements.a -libelements_a_SOURCES = $(ELEMSOURCES) +noinst_LTLIBRARIES = libelements.la +libelements_la_SOURCES = $(ELEMSOURCES) INCLUDES = \ -DPACKAGE=\"@PACKAGE@\" \ diff --git a/python/xml/Makefile.am b/python/xml/Makefile.am index 17bbef15..6e8c0521 100644 --- a/python/xml/Makefile.am +++ b/python/xml/Makefile.am @@ -13,8 +13,8 @@ XMLSOURCES = \ py_samlp_response.c \ py_xml.c -noinst_LIBRARIES = libxml.a -libxml_a_SOURCES = $(XMLSOURCES) +noinst_LTLIBRARIES = libxml.la +libxml_la_SOURCES = $(XMLSOURCES) INCLUDES = \ -DPACKAGE=\"@PACKAGE@\" \ -- cgit