mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
took away the requirement for automake-1.4, changed the messages for
* autogen.sh: took away the requirement for automake-1.4, changed the messages for getting auto* tools to current gnu pages. * configure.in, configure: added check for Linux Dec alpha requiring -ieee flag, fixed test for ipv6 * trionan.c: fixed problem for compiling on Linux Dec alpha using native compiler * doc/Makefile.am: implemented regeneration of win32/libxml2.def.src whenever libxml2-api.xml is changed.
This commit is contained in:
parent
6b621b8938
commit
476cd96411
12
ChangeLog
12
ChangeLog
@ -1,3 +1,15 @@
|
||||
Tue Aug 12 18:55:08 HKT 2003 William Brack <wbrack@mmm.com.hk>
|
||||
|
||||
* autogen.sh: took away the requirement for automake-1.4,
|
||||
changed the messages for getting auto* tools to current
|
||||
gnu pages.
|
||||
* configure.in: added check for Linux Dec alpha requiring
|
||||
-ieee flag, fixed test for ipv6
|
||||
* trionan.c: fixed problem for compiling on Linux Dec alpha
|
||||
using native compiler
|
||||
* doc/Makefile.am: implemented regeneration of win32/libxml2.def.src
|
||||
whenever libxml2-api.xml is changed.
|
||||
|
||||
Mon Aug 11 17:02:23 CEST 2003 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* parser.c: cleaning up a problem when parsing UTF-16 and libiconv
|
||||
|
23
autogen.sh
23
autogen.sh
@ -12,29 +12,24 @@ DIE=0
|
||||
echo
|
||||
echo "You must have autoconf installed to compile libxml."
|
||||
echo "Download the appropriate package for your distribution,"
|
||||
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
|
||||
echo "or see http://www.gnu.org/software/autoconf"
|
||||
DIE=1
|
||||
}
|
||||
|
||||
(libtool --version) < /dev/null > /dev/null 2>&1 || {
|
||||
echo
|
||||
echo "You must have libtool installed to compile libxml."
|
||||
echo "Get ftp://alpha.gnu.org/gnu/libtool-1.0h.tar.gz"
|
||||
echo "(or a newer version if it is available)"
|
||||
echo "Download the appropriate package for your distribution,"
|
||||
echo "or see http://www.gnu.org/software/libtool"
|
||||
DIE=1
|
||||
}
|
||||
|
||||
(automake-1.4 --version) < /dev/null > /dev/null 2>&1 || {
|
||||
(automake --version) < /dev/null > /dev/null 2>&1 || {
|
||||
echo
|
||||
echo "You must have latest automake 1.4 installed to compile libxml,"
|
||||
echo "or alternatively create a symlink from automake-1.4 to "
|
||||
echo "plain automake."
|
||||
echo "Newer versions of automake 1.4 come with the symlink "
|
||||
echo "pregenerated. This will allow you to compile libxml "
|
||||
echo "while also installing newer automakes such as 1.6."
|
||||
echo "Get ftp://sources.redhat.com/pub/automake/automake-1.4l.tar.gz"
|
||||
echo "(or a newer version in the 1.4 series if it is available)."
|
||||
DIE=1
|
||||
echo "You must have automake installed to compile libxml."
|
||||
echo "Download the appropriate package for your distribution,"
|
||||
echo "or see http://www.gnu.org/software/automake"
|
||||
}
|
||||
|
||||
if test "$DIE" -eq 1; then
|
||||
@ -52,8 +47,8 @@ if test -z "$*"; then
|
||||
fi
|
||||
|
||||
libtoolize --copy --force
|
||||
aclocal-1.4 $ACLOCAL_FLAGS
|
||||
automake-1.4 --add-missing
|
||||
aclocal $ACLOCAL_FLAGS
|
||||
automake --add-missing
|
||||
autoconf
|
||||
|
||||
cd $THEDIR
|
||||
|
@ -259,6 +259,9 @@ if test "${GCC}" != "yes" ; then
|
||||
*-dec-osf* )
|
||||
CFLAGS="${CFLAGS} -ieee"
|
||||
;;
|
||||
alpha*-*-linux* )
|
||||
CFLAGS="${CFLAGS} -ieee"
|
||||
;;
|
||||
esac
|
||||
else
|
||||
if test "$with_fexceptions" = "yes"
|
||||
|
@ -11,6 +11,9 @@ DOC_SOURCE_DIR=..
|
||||
|
||||
HTML_DIR=$(datadir)/doc
|
||||
|
||||
# A file in win32 depends upon one of the doc files
|
||||
WIN32_DIR=$(top_srcdir)/win32
|
||||
|
||||
TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)/html
|
||||
PAGES= architecture.html bugs.html contribs.html docs.html DOM.html \
|
||||
downloads.html entities.html example.html help.html index.html \
|
||||
@ -69,7 +72,12 @@ xml: templates
|
||||
libxml2-api.xml: apibuild.py ../include/libxml/*.h
|
||||
-(./apibuild.py)
|
||||
|
||||
api: libxml2-api.xml libxml2-refs.xml
|
||||
$(WIN32_DIR)/libxml2.def.src: libxml2-api.xml
|
||||
-@(if [ -x $(bindir)/xsltproc ] ; then \
|
||||
$(bindir)/xsltproc -o $(WIN32_DIR)/libxml2.def.src \
|
||||
--nonet $(WIN32_DIR)/defgen.xsl libxml2-api.xml ; fi )
|
||||
|
||||
api: libxml2-api.xml libxml2-refs.xml $(WIN32_DIR)/libxml2.def.src
|
||||
|
||||
html:
|
||||
if test -n -d html ; then mkdir html ; fi
|
||||
|
@ -51,8 +51,12 @@
|
||||
# include <signal.h>
|
||||
#endif
|
||||
#if defined(TRIO_COMPILER_DECC)
|
||||
# if defined(__linux__)
|
||||
# include <cpml.h>
|
||||
# else
|
||||
# include <fp_class.h>
|
||||
# endif
|
||||
#endif
|
||||
#include <assert.h>
|
||||
|
||||
#if defined(TRIO_DOCUMENTATION)
|
||||
@ -435,7 +439,7 @@ trio_isinf
|
||||
TRIO_ARGS1((number),
|
||||
double number)
|
||||
{
|
||||
#if defined(TRIO_COMPILER_DECC)
|
||||
#if defined(TRIO_COMPILER_DECC) && !defined(__linux__)
|
||||
/*
|
||||
* DECC has an isinf() macro, but it works differently than that
|
||||
* of C99, so we use the fp_class() function instead.
|
||||
|
Loading…
x
Reference in New Issue
Block a user