mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-08-01 14:06:55 +03:00
Applied Keith Isdale patch for the debugger support, make it the default,
* Makefile.am acconfig.h config.h.in configure.in xsltproc/Makefile.am breakpoint/* libxslt/transform.[ch] libxslt/xsltconfig.h.in: Applied Keith Isdale patch for the debugger support, make it the default, added the WITH_XSLT_DEBUGGER define to xsltconfig.h.in, small cleanups Daniel
This commit is contained in:
@ -8,8 +8,13 @@ if DV_STATIC_LINK
|
||||
#
|
||||
all: xsltproc
|
||||
|
||||
if WITH_DEBUGGER
|
||||
xsltproc: xsltproc.o ../libxslt/.libs/libxslt.a ../libexslt/.libs/libexslt.a ../breakpoint/.libs/libxsltbreakpoint.a ../../XML/.libs/libxml2.a
|
||||
gcc -g -O -o xsltproc xsltproc.o ../libxslt/.libs/libxslt.a ../breakpoint/.libs/libxsltbreakpoint.a ../libexslt/.libs/libexslt.a ../../XML/.libs/libxml2.a -lz -lm
|
||||
else
|
||||
xsltproc: xsltproc.o ../libxslt/.libs/libxslt.a ../libexslt/.libs/libexslt.a ../../XML/.libs/libxml2.a
|
||||
gcc -g -O -o xsltproc xsltproc.o ../libxslt/.libs/libxslt.a ../libexslt/.libs/libexslt.a ../../XML/.libs/libxml2.a -lz -lm
|
||||
endif
|
||||
|
||||
programs=
|
||||
else
|
||||
@ -23,6 +28,22 @@ xsltproc_LDFLAGS =
|
||||
xsltproc_DEPENDENCIES = $(DEPS)
|
||||
xsltproc_LDADD = $(LDADDS)
|
||||
|
||||
DEPS = $(top_builddir)/libxslt/libxslt.la $(top_builddir)/libexslt/libexslt.la
|
||||
if WITH_DEBUGGER
|
||||
DEPS = $(top_builddir)/libxslt/libxslt.la \
|
||||
$(top_builddir)/breakpoint/libxsltbreakpoint.la \
|
||||
$(top_builddir)/libexslt/libexslt.la
|
||||
else
|
||||
DEPS = $(top_builddir)/libxslt/libxslt.la \
|
||||
$(top_builddir)/libexslt/libexslt.la
|
||||
endif
|
||||
|
||||
if WITH_DEBUGGER
|
||||
LDADDS = $(top_builddir)/libxslt/libxslt.la \
|
||||
$(top_builddir)/libexslt/libexslt.la @LIBXML_LIBS@ $(EXTRA_LIBS)
|
||||
$(top_builddir)/libexslt/libexslt.la \
|
||||
$(top_builddir)/breakpoint/libxsltbreakpoint.la \
|
||||
@LIBXML_LIBS@ $(EXTRA_LIBS)
|
||||
else
|
||||
LDADDS = $(top_builddir)/libxslt/libxslt.la \
|
||||
$(top_builddir)/libexslt/libexslt.la \
|
||||
@LIBXML_LIBS@ $(EXTRA_LIBS)
|
||||
endif
|
||||
|
Reference in New Issue
Block a user