mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-29 11:41:22 +03:00
trying to fix bug #98517 about building outside the source tree fixed the
* Makefile.am python/Makefile.am python/tests/Makefile.am: trying to fix bug #98517 about building outside the source tree * doc/xml.html doc/FAQ.html: fixed the link to libiconv #94585 Daniel
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
Fri Nov 15 12:16:07 CET 2002 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
|
* Makefile.am python/Makefile.am python/tests/Makefile.am:
|
||||||
|
trying to fix bug #98517 about building outside the source tree
|
||||||
|
* doc/xml.html doc/FAQ.html: fixed the link to libiconv #94585
|
||||||
|
|
||||||
Thu Nov 14 18:41:55 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
|
Thu Nov 14 18:41:55 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
|
||||||
|
|
||||||
* include/win32config.h: cleanup
|
* include/win32config.h: cleanup
|
||||||
|
20
Makefile.am
20
Makefile.am
@ -465,25 +465,25 @@ Catatests : xmlcatalog$(EXEEXT)
|
|||||||
rm result.$$name ; \
|
rm result.$$name ; \
|
||||||
fi ; fi ; done)
|
fi ; fi ; done)
|
||||||
@echo "Add and del operations on XML Catalogs"
|
@echo "Add and del operations on XML Catalogs"
|
||||||
-@($(CHECKER) $(top_builddir)/xmlcatalog --create --noout result/catalogs/mycatalog; \
|
-@($(CHECKER) $(top_builddir)/xmlcatalog --create --noout $(srcdir)/result/catalogs/mycatalog; \
|
||||||
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
|
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
|
||||||
$(CHECKER) $(top_builddir)/xmlcatalog --noout --add public Pubid sysid result/catalogs/mycatalog; \
|
$(CHECKER) $(top_builddir)/xmlcatalog --noout --add public Pubid sysid $(srcdir)/result/catalogs/mycatalog; \
|
||||||
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
|
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
|
||||||
$(CHECKER) $(top_builddir)/xmlcatalog --noout --add public Pubid2 sysid2 result/catalogs/mycatalog; \
|
$(CHECKER) $(top_builddir)/xmlcatalog --noout --add public Pubid2 sysid2 $(srcdir)/result/catalogs/mycatalog; \
|
||||||
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
|
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
|
||||||
$(CHECKER) $(top_builddir)/xmlcatalog --noout --add public Pubid3 sysid3 result/catalogs/mycatalog; \
|
$(CHECKER) $(top_builddir)/xmlcatalog --noout --add public Pubid3 sysid3 $(srcdir)/result/catalogs/mycatalog; \
|
||||||
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
|
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
|
||||||
diff result/catalogs/mycatalog.full result/catalogs/mycatalog; \
|
diff result/catalogs/mycatalog.full $(srcdir)/result/catalogs/mycatalog; \
|
||||||
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
|
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
|
||||||
$(CHECKER) $(top_builddir)/xmlcatalog --noout --del sysid result/catalogs/mycatalog; \
|
$(CHECKER) $(top_builddir)/xmlcatalog --noout --del sysid $(srcdir)/result/catalogs/mycatalog; \
|
||||||
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
|
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
|
||||||
$(CHECKER) $(top_builddir)/xmlcatalog --noout --del sysid3 result/catalogs/mycatalog; \
|
$(CHECKER) $(top_builddir)/xmlcatalog --noout --del sysid3 $(srcdir)/result/catalogs/mycatalog; \
|
||||||
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
|
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
|
||||||
$(CHECKER) $(top_builddir)/xmlcatalog --noout --del sysid2 result/catalogs/mycatalog; \
|
$(CHECKER) $(top_builddir)/xmlcatalog --noout --del sysid2 $(srcdir)/result/catalogs/mycatalog; \
|
||||||
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
|
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
|
||||||
diff result/catalogs/mycatalog.empty result/catalogs/mycatalog; \
|
diff result/catalogs/mycatalog.empty $(srcdir)/result/catalogs/mycatalog; \
|
||||||
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
|
grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
|
||||||
rm -f result/catalogs/mycatalog)
|
rm -f $(srcdir)/result/catalogs/mycatalog)
|
||||||
|
|
||||||
SVGtests : xmllint$(EXEEXT)
|
SVGtests : xmllint$(EXEEXT)
|
||||||
@echo "##"
|
@echo "##"
|
||||||
|
@ -197,7 +197,7 @@ A:link, A:visited, A:active { text-decoration: underline }
|
|||||||
<li>iconv: a powerful character encoding conversion library. It is
|
<li>iconv: a powerful character encoding conversion library. It is
|
||||||
included by default in recent glibc libraries, so it doesn't need to
|
included by default in recent glibc libraries, so it doesn't need to
|
||||||
be installed specifically on Linux. It now seems a <a href="http://www.opennc.org/onlinepubs/7908799/xsh/iconv.html">part
|
be installed specifically on Linux. It now seems a <a href="http://www.opennc.org/onlinepubs/7908799/xsh/iconv.html">part
|
||||||
of the official UNIX</a> specification. Here is one <a href="http://clisp.cons.org/~haible/packages-libiconv.html">implementation
|
of the official UNIX</a> specification. Here is one <a href="http://www.gnu.org/software/libiconv/">implementation
|
||||||
of the library</a> which source can be found <a href="ftp://ftp.ilog.fr/pub/Users/haible/gnu/">here</a>.</li>
|
of the library</a> which source can be found <a href="ftp://ftp.ilog.fr/pub/Users/haible/gnu/">here</a>.</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
@ -250,7 +250,7 @@ libxml2</p>
|
|||||||
be installed specifically on Linux. It now seems a <a
|
be installed specifically on Linux. It now seems a <a
|
||||||
href="http://www.opennc.org/onlinepubs/7908799/xsh/iconv.html">part
|
href="http://www.opennc.org/onlinepubs/7908799/xsh/iconv.html">part
|
||||||
of the official UNIX</a> specification. Here is one <a
|
of the official UNIX</a> specification. Here is one <a
|
||||||
href="http://clisp.cons.org/~haible/packages-libiconv.html">implementation
|
href="http://www.gnu.org/software/libiconv/">implementation
|
||||||
of the library</a> which source can be found <a
|
of the library</a> which source can be found <a
|
||||||
href="ftp://ftp.ilog.fr/pub/Users/haible/gnu/">here</a>.</li>
|
href="ftp://ftp.ilog.fr/pub/Users/haible/gnu/">here</a>.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -36,8 +36,8 @@ python_LTLIBRARIES = libxml2mod.la
|
|||||||
libxml2mod_la_SOURCES = libxml.c types.c libxml2-py.c
|
libxml2mod_la_SOURCES = libxml.c types.c libxml2-py.c
|
||||||
libxml2mod_la_LIBADD = $(mylibs)
|
libxml2mod_la_LIBADD = $(mylibs)
|
||||||
|
|
||||||
libxml2.py: $(srcdir)/libxml.py libxml2class.py
|
libxml2.py: $(srcdir)/libxml.py $(srcdir)/libxml2class.py
|
||||||
cat $(srcdir)/libxml.py libxml2class.py > libxml2.py
|
cat $(srcdir)/libxml.py $(srcdir)/libxml2class.py > libxml2.py
|
||||||
|
|
||||||
install-data-local:
|
install-data-local:
|
||||||
$(mkinstalldirs) $(DESTDIR)$(libdir)/python${PYTHON_VERSION}/site-packages
|
$(mkinstalldirs) $(DESTDIR)$(libdir)/python${PYTHON_VERSION}/site-packages
|
||||||
|
@ -30,8 +30,8 @@ EXTRA_DIST = $(PYTESTS) $(XMLS)
|
|||||||
|
|
||||||
if WITH_PYTHON
|
if WITH_PYTHON
|
||||||
tests: $(PYTESTS)
|
tests: $(PYTESTS)
|
||||||
-@(PYTHONPATH="..:../.libs" ; export PYTHONPATH; \
|
-@(PYTHONPATH="..:../.libs:$(srcdir)/.." ; export PYTHONPATH; \
|
||||||
for test in $(PYTESTS) ; do echo "-- $$test" ; $(PYTHON) $$test ; done)
|
for test in $(PYTESTS) ; do echo "-- $$test" ; $(PYTHON) $(srcdir)/$$test ; done)
|
||||||
else
|
else
|
||||||
tests:
|
tests:
|
||||||
endif
|
endif
|
||||||
|
Reference in New Issue
Block a user