mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2024-12-25 23:21:26 +03:00
trying to fix #88412 by bypassing all the python subdir if python ain't
* Makefile.am configure.in: trying to fix #88412 by bypassing all the python subdir if python ain't detected daniel
This commit is contained in:
parent
23e73571f8
commit
40b11344a8
@ -1,3 +1,8 @@
|
|||||||
|
Fri Sep 20 14:00:16 CEST 2002 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
|
* Makefile.am configure.in: trying to fix #88412 by bypassing
|
||||||
|
all the python subdir if python ain't detected
|
||||||
|
|
||||||
Thu Sep 19 21:46:53 CEST 2002 Daniel Veillard <daniel@veillard.com>
|
Thu Sep 19 21:46:53 CEST 2002 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
* Makefile.am configure.in include/libxml/xmlversion.h.in:
|
* Makefile.am configure.in include/libxml/xmlversion.h.in:
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
## Process this file with automake to produce Makefile.in
|
## Process this file with automake to produce Makefile.in
|
||||||
# AUTOMAKE_ OPTIONS=no-dependencies
|
# AUTOMAKE_ OPTIONS=no-dependencies
|
||||||
|
|
||||||
SUBDIRS = include . doc example python
|
SUBDIRS = include . doc example @PYTHON_SUBDIR@
|
||||||
|
|
||||||
INCLUDES = -I@srcdir@/include -I$(top_builddir)/include @THREAD_CFLAGS@ @Z_CFLAGS@
|
INCLUDES = -I@srcdir@/include -I$(top_builddir)/include @THREAD_CFLAGS@ @Z_CFLAGS@
|
||||||
|
|
||||||
@ -107,7 +107,7 @@ check-local: tests
|
|||||||
testall : tests SVGtests SAXtests
|
testall : tests SVGtests SAXtests
|
||||||
|
|
||||||
tests: XMLtests XMLenttests HTMLtests Validtests URItests XPathtests XPtrtests XIncludetests C14Ntests Scripttests Catatests @TEST_REGEXPS@ @TEST_SCHEMAS@ @TEST_THREADS@
|
tests: XMLtests XMLenttests HTMLtests Validtests URItests XPathtests XPtrtests XIncludetests C14Ntests Scripttests Catatests @TEST_REGEXPS@ @TEST_SCHEMAS@ @TEST_THREADS@
|
||||||
@(cd python ; $(MAKE) tests)
|
@(if [ "@PYTHON_SUBDIR@" != "" ] ; then cd python ; $(MAKE) tests ; fi)
|
||||||
|
|
||||||
valgrind:
|
valgrind:
|
||||||
@echo '## Running the regression tests under Valgrind'
|
@echo '## Running the regression tests under Valgrind'
|
||||||
|
@ -248,6 +248,13 @@ if test "$with_python" != "no" ; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
AM_CONDITIONAL(WITH_PYTHON, test "$PYTHON_INCLUDES" != "")
|
AM_CONDITIONAL(WITH_PYTHON, test "$PYTHON_INCLUDES" != "")
|
||||||
|
if test "$PYTHON_INCLUDES" != ""
|
||||||
|
then
|
||||||
|
PYTHON_SUBDIR=python
|
||||||
|
else
|
||||||
|
PYTHON_SUBDIR=
|
||||||
|
fi
|
||||||
|
AC_SUBST(PYTHON_SUBDIR)
|
||||||
|
|
||||||
dnl
|
dnl
|
||||||
dnl Tester makes use of readline if present
|
dnl Tester makes use of readline if present
|
||||||
|
Loading…
Reference in New Issue
Block a user