1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-08-04 12:22:09 +03:00

link python module with python library

libxslt python module wasn't linked with python library
* configure.in python/Makefile.am: detect and add appropriate linking
  flags
This commit is contained in:
Frederic Crozat
2009-09-24 18:16:07 +02:00
committed by Daniel Veillard
parent 2818aec361
commit a1981a0da0
2 changed files with 3 additions and 1 deletions

View File

@@ -36,7 +36,7 @@ all-local: libxslt.py
python_LTLIBRARIES = libxsltmod.la
libxsltmod_la_SOURCES = libxslt.c types.c libxslt-py.c
libxsltmod_la_LIBADD = $(mylibs)
libxsltmod_la_LIBADD = $(mylibs) @PYTHON_LIBS@
libxslt.py: $(srcdir)/libxsl.py $(srcdir)/libxsltclass.py
cat $(srcdir)/libxsl.py $(srcdir)/libxsltclass.py > libxslt.py