diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2001-09-01 16:17:44 +0800 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2001-09-01 16:17:44 +0800 |
commit | 85d027ea8fd27e64956cb9e7e865f9bb62cee39e (patch) | |
tree | 208b856b88d5ca48081159321cf01d6ef1054755 | |
parent | a7aacf6f952fd3fe86516c0ecda3f26aa5b90474 (diff) | |
download | freebsd-ports-gnome-85d027ea8fd27e64956cb9e7e865f9bb62cee39e.tar.gz freebsd-ports-gnome-85d027ea8fd27e64956cb9e7e865f9bb62cee39e.tar.zst freebsd-ports-gnome-85d027ea8fd27e64956cb9e7e865f9bb62cee39e.zip |
Add a patch to prevent extconf.rb from mistakenly detecting functions
in libwww when it should find the ones in libexpat.
PR: ports/30216
Submitted by: KUNISHIMA Takeo <kunishi@acm.org>
-rw-r--r-- | textproc/ruby-sablot/files/patch-aa | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/textproc/ruby-sablot/files/patch-aa b/textproc/ruby-sablot/files/patch-aa new file mode 100644 index 000000000000..f4cdad60fee5 --- /dev/null +++ b/textproc/ruby-sablot/files/patch-aa @@ -0,0 +1,17 @@ +--- extconf.rb.orig Sun Jun 24 07:01:40 2001 ++++ extconf.rb Thu Aug 30 12:39:31 2001 +@@ -15,10 +15,10 @@ + end + + if have_header("sablot.h") and +- (have_library("xmltok", "XmlParseXmlDecl") or +- have_library("expat", "XmlParseXmlDecl")) and +- (have_library("xmlparse", "XML_ParserCreate") or +- have_library("expat", "XML_ParserCreate")) and ++ (have_library("expat", "XmlParseXmlDecl") or ++ have_library("xmltok", "XmlParseXmlDecl")) and ++ (have_library("expat", "XML_ParserCreate") or ++ have_library("xmlparse", "XML_ParserCreate")) and + have_library("sablot", "SablotProcessStrings") + create_makefile("sablot") + STDERR.print <<EOB |