summaryrefslogtreecommitdiff
path: root/xsltproc
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2004-06-30 16:43:53 +0000
committerDaniel Veillard <veillard@src.gnome.org>2004-06-30 16:43:53 +0000
commit1bc6a1a495c2acec0fa2c46783a4dc0adefc1860 (patch)
tree803d776b536c44194efbb353452da2652334ad2d /xsltproc
parent19739dbd5fd3449b0cdae8984f3dd8b787d18ad2 (diff)
downloadlibxslt-1bc6a1a495c2acec0fa2c46783a4dc0adefc1860.tar.gz
libxslt-1bc6a1a495c2acec0fa2c46783a4dc0adefc1860.tar.bz2
libxslt-1bc6a1a495c2acec0fa2c46783a4dc0adefc1860.zip
applied patch from Joel Reed to get EXSLT crypto extensions based on
* win32/Makefile.msvc win32/Makefile.mingw libexslt/Makefile.am libexslt/exslt.c libexslt/exslt.h config.h.in configure.in libexslt/crypto.c: applied patch from Joel Reed to get EXSLT crypto extensions based on libgcrypt if found at configure time. * tests/namespaces/Makefile.am: fixed a small breakage Daniel
Diffstat (limited to 'xsltproc')
-rw-r--r--xsltproc/Makefile.am6
1 files changed, 4 insertions, 2 deletions
diff --git a/xsltproc/Makefile.am b/xsltproc/Makefile.am
index a8828de5..44210c89 100644
--- a/xsltproc/Makefile.am
+++ b/xsltproc/Makefile.am
@@ -5,10 +5,12 @@ INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/libxslt -I$(top_srcdir)/libexslt \
EXTRA_PROGRAMS=
bin_PROGRAMS = xsltproc $(XSLTPROCDV)
+AM_CFLAGS = $(LIBGCRYPT_CFLAGS)
+
xsltproc_SOURCES = xsltproc.c
-xsltproc_LDFLAGS =
+xsltproc_LDFLAGS =
xsltproc_DEPENDENCIES = $(DEPS)
-xsltproc_LDADD = $(LDADDS)
+xsltproc_LDADD = $(LDADDS) $(LIBGCRYPT_LIBS)
DEPS = $(top_builddir)/libxslt/libxslt.la \
$(top_builddir)/libexslt/libexslt.la