From 3097cc843ae1f55c6b3e41842720f7ba80b65c1a Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Wed, 1 Jan 2014 22:13:22 +0100 Subject: Port patches from libxml2-2.8.0. diff --git a/xml2-config.in b/xml2-config.in index 1f82f80..8e8bc1e 100644 --- a/xml2-config.in +++ b/xml2-config.in @@ -40,8 +40,8 @@ while test $# -gt 0; do case "$1" in --prefix=*) prefix=$optarg - includedir=$prefix/include - libdir=$prefix/lib + includedir=$prefix/develop/headers + libdir=$prefix/develop/lib ;; --prefix) @@ -50,7 +50,7 @@ while test $# -gt 0; do --exec-prefix=*) exec_prefix=$optarg - libdir=$exec_prefix/lib + libdir=$exec_prefix/develop/lib ;; --exec-prefix) -- 2.42.1 From cae7f18391597687f704bfd4a15d438c856608e0 Mon Sep 17 00:00:00 2001 From: Jessica Hamilton Date: Sat, 30 May 2015 11:38:15 +1200 Subject: Haiku: search for catalogs in directories diff --git a/catalog.c b/catalog.c index 945ea2c..759c719 100644 --- a/catalog.c +++ b/catalog.c @@ -18,6 +18,9 @@ #ifdef LIBXML_CATALOG_ENABLED #include #include +#ifdef __HAIKU__ +#include +#endif #ifdef HAVE_SYS_STAT_H #include #endif @@ -67,10 +70,10 @@ #define XML_URN_PUBID "urn:publicid:" #define XML_CATAL_BREAK ((xmlChar *) -1) #ifndef XML_XML_DEFAULT_CATALOG -#define XML_XML_DEFAULT_CATALOG "file://" SYSCONFDIR "/xml/catalog" +#define XML_XML_DEFAULT_CATALOG "/boot/system/data/xml/catalog" #endif #ifndef XML_SGML_DEFAULT_CATALOG -#define XML_SGML_DEFAULT_CATALOG "file://" SYSCONFDIR "/sgml/catalog" +#define XML_SGML_DEFAULT_CATALOG "/boot/system/data/sgml/catalog" #endif #if defined(_WIN32) && defined(_MSC_VER) @@ -3066,6 +3069,21 @@ xmlCatalogIsEmpty(xmlCatalogPtr catal) { * * ************************************************************************/ +#ifdef __HAIKU__ +static xmlCatalogEntryPtr *__haikuNextEntry; +static int __haikuAddCatalog(const char* subpath, const struct stat* sb, int typeflag) +{ + if (typeflag == FTW_F) { + *__haikuNextEntry = xmlNewCatalogEntry(XML_CATA_CATALOG, NULL, + NULL, BAD_CAST subpath, xmlCatalogDefaultPrefer, NULL); + if (*__haikuNextEntry != NULL) + __haikuNextEntry = &((*__haikuNextEntry)->next); + } + + return 0; +} +#endif + /** * xmlInitializeCatalogData: * @@ -3158,10 +3176,16 @@ xmlInitializeCatalog(void) { cur++; path = (char *) xmlStrndup((const xmlChar *)paths, cur - paths); if (path != NULL) { +#ifdef __HAIKU__ + __haikuNextEntry = nextent; + ftw(path, __haikuAddCatalog, 3); + nextent = __haikuNextEntry; +#else *nextent = xmlNewCatalogEntry(XML_CATA_CATALOG, NULL, NULL, BAD_CAST path, xmlCatalogDefaultPrefer, NULL); if (*nextent != NULL) nextent = &((*nextent)->next); +#endif xmlFree(path); } } -- 2.42.1 From 742549cee74d0862aad38c4350482699fc16c507 Mon Sep 17 00:00:00 2001 From: Jerome Duval Date: Wed, 3 Apr 2019 18:27:19 +0200 Subject: Remove options unknown to gcc2 diff --git a/configure.ac b/configure.ac index d099b87..edb7f2e 100644 --- a/configure.ac +++ b/configure.ac @@ -516,7 +516,7 @@ else fi # warnings we'd like to see - AM_CFLAGS="${AM_CFLAGS} -pedantic -Wall -Wextra -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes" + AM_CFLAGS="${AM_CFLAGS} -pedantic -Wall -Wpointer-arith -Wcast-align -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes" # warnings we'd like to suppress AM_CFLAGS="${AM_CFLAGS} -Wno-long-long -Wno-format-extra-args" case "${host}" in -- 2.42.1