diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-12-06 20:10:27 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-12-06 20:10:27 +0800 |
commit | 65e9353d23b14ecd1c5d63a4f41d9d291de6b55b (patch) | |
tree | 89cdbe5bd6833e03f4d3508f2541d1ccbbd3599a /textproc/libxslt | |
parent | 3dd1b5ec70bad16696100a3e6b4ed4b40894cf11 (diff) | |
download | freebsd-ports-gnome-65e9353d23b14ecd1c5d63a4f41d9d291de6b55b.tar.gz freebsd-ports-gnome-65e9353d23b14ecd1c5d63a4f41d9d291de6b55b.tar.zst freebsd-ports-gnome-65e9353d23b14ecd1c5d63a4f41d9d291de6b55b.zip |
Ensure that xslt.h includes all headers necessary. This should fix
p5-XML-LibXSLM and possibly other packages. Bump PORTREVISION.
Prompted by: sheldonh
Diffstat (limited to 'textproc/libxslt')
-rw-r--r-- | textproc/libxslt/Makefile | 1 | ||||
-rw-r--r-- | textproc/libxslt/files/patch-libxslt::xslt.h | 18 |
2 files changed, 19 insertions, 0 deletions
diff --git a/textproc/libxslt/Makefile b/textproc/libxslt/Makefile index 4f7bfe3f6f9b..7e3ba7541c78 100644 --- a/textproc/libxslt/Makefile +++ b/textproc/libxslt/Makefile @@ -7,6 +7,7 @@ PORTNAME= libxslt PORTVERSION= 1.0.8 +PORTREVISION= 1 CATEGORIES= textproc gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= stable/sources/libxslt diff --git a/textproc/libxslt/files/patch-libxslt::xslt.h b/textproc/libxslt/files/patch-libxslt::xslt.h new file mode 100644 index 000000000000..72db80ae0739 --- /dev/null +++ b/textproc/libxslt/files/patch-libxslt::xslt.h @@ -0,0 +1,18 @@ + +$FreeBSD$ + +--- libxslt/xslt.h 2001/12/06 12:04:42 1.1 ++++ libxslt/xslt.h 2001/12/06 12:07:32 +@@ -11,6 +11,12 @@ + + #include <libxml/tree.h> + ++#if defined(WIN32) && defined(_MSC_VER) ++#include <libxslt/xsltwin32config.h> ++#else ++#include <libxslt/xsltconfig.h> ++#endif ++ + #ifdef __cplusplus + extern "C" { + #endif |