1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-08-07 06:43:02 +03:00

trying to fix #77441 Daniel

* configure.in: trying to fix #77441
Daniel
This commit is contained in:
Daniel Veillard
2002-04-14 12:56:08 +00:00
parent a8a89fe587
commit 9b731d709e
6 changed files with 23 additions and 7 deletions

View File

@@ -1,3 +1,7 @@
Sun Apr 14 14:55:15 CEST 2002 Daniel Veillard <daniel@veillard.com>
* configure.in: trying to fix #77441
Fri Apr 12 23:02:16 CEST 2002 Daniel Veillard <daniel@veillard.com> Fri Apr 12 23:02:16 CEST 2002 Daniel Veillard <daniel@veillard.com>
* include/libxml/xmlIO.h: Hallski complained it could not be * include/libxml/xmlIO.h: Hallski complained it could not be

View File

@@ -93,6 +93,9 @@
/* Define if you have the <arpa/inet.h> header file. */ /* Define if you have the <arpa/inet.h> header file. */
#undef HAVE_ARPA_INET_H #undef HAVE_ARPA_INET_H
/* Define if you have the <arpa/nameser.h> header file. */
#undef HAVE_ARPA_NAMESER_H
/* Define if you have the <ctype.h> header file. */ /* Define if you have the <ctype.h> header file. */
#undef HAVE_CTYPE_H #undef HAVE_CTYPE_H
@@ -135,6 +138,9 @@
/* Define if you have the <netinet/in.h> header file. */ /* Define if you have the <netinet/in.h> header file. */
#undef HAVE_NETINET_IN_H #undef HAVE_NETINET_IN_H
/* Define if you have the <resolv.h> header file. */
#undef HAVE_RESOLV_H
/* Define if you have the <signal.h> header file. */ /* Define if you have the <signal.h> header file. */
#undef HAVE_SIGNAL_H #undef HAVE_SIGNAL_H

View File

@@ -205,6 +205,7 @@ if test "$with_python" != "no" ; then
then then
echo Found python in $with_python/bin/python echo Found python in $with_python/bin/python
PYTHON="$with_python/bin/python" PYTHON="$with_python/bin/python"
else
if test -x "$with_python" if test -x "$with_python"
then then
echo Found python in $with_python/bin/python echo Found python in $with_python/bin/python
@@ -556,3 +557,4 @@ ln -s Copyright COPYING
AC_OUTPUT(libxml.spec Makefile include/Makefile include/libxml/Makefile doc/Makefile example/Makefile python/Makefile python/tests/Makefile include/libxml/xmlversion.h include/libxml/xmlwin32version.h xml2-config libxml-2.0.pc xml2Conf.sh python/setup.py) AC_OUTPUT(libxml.spec Makefile include/Makefile include/libxml/Makefile doc/Makefile example/Makefile python/Makefile python/tests/Makefile include/libxml/xmlversion.h include/libxml/xmlwin32version.h xml2-config libxml-2.0.pc xml2Conf.sh python/setup.py)
chmod +x xml2-config xml2Conf.sh python/setup.py

View File

@@ -284,6 +284,10 @@ int xmlValidGetPotentialChildren(xmlElementContent *ctree,
const xmlChar **list, const xmlChar **list,
int *len, int *len,
int max); int max);
int xmlValidateNameValue (const xmlChar *value);
int xmlValidateNamesValue (const xmlChar *value);
int xmlValidateNmtokenValue (const xmlChar *value);
int xmlValidateNmtokensValue(const xmlChar *value);
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif

View File

@@ -40,9 +40,9 @@
#include <netdb.h> #include <netdb.h>
#endif #endif
#ifdef HAVE_RESOLV_H #ifdef HAVE_RESOLV_H
# ifdef HAVE_ARPA_NAMESER_H #ifdef HAVE_ARPA_NAMESER_H
# include <arpa/nameser.h> #include <arpa/nameser.h>
# endif #endif
#include <resolv.h> #include <resolv.h>
#endif #endif
#ifdef HAVE_FCNTL_H #ifdef HAVE_FCNTL_H

View File

@@ -2585,7 +2585,7 @@ xmlIsMixedElement(xmlDocPtr doc, const xmlChar *name) {
* returns 1 if valid or 0 otherwise * returns 1 if valid or 0 otherwise
*/ */
static int int
xmlValidateNameValue(const xmlChar *value) { xmlValidateNameValue(const xmlChar *value) {
const xmlChar *cur; const xmlChar *cur;
int val, len; int val, len;
@@ -2624,7 +2624,7 @@ xmlValidateNameValue(const xmlChar *value) {
* returns 1 if valid or 0 otherwise * returns 1 if valid or 0 otherwise
*/ */
static int int
xmlValidateNamesValue(const xmlChar *value) { xmlValidateNamesValue(const xmlChar *value) {
const xmlChar *cur; const xmlChar *cur;
int val, len; int val, len;
@@ -2689,7 +2689,7 @@ xmlValidateNamesValue(const xmlChar *value) {
* returns 1 if valid or 0 otherwise * returns 1 if valid or 0 otherwise
*/ */
static int int
xmlValidateNmtokenValue(const xmlChar *value) { xmlValidateNmtokenValue(const xmlChar *value) {
const xmlChar *cur; const xmlChar *cur;
int val, len; int val, len;
@@ -2731,7 +2731,7 @@ xmlValidateNmtokenValue(const xmlChar *value) {
* returns 1 if valid or 0 otherwise * returns 1 if valid or 0 otherwise
*/ */
static int int
xmlValidateNmtokensValue(const xmlChar *value) { xmlValidateNmtokensValue(const xmlChar *value) {
const xmlChar *cur; const xmlChar *cur;
int val, len; int val, len;