summaryrefslogtreecommitdiff
path: root/textproc
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2001-09-01 08:17:44 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2001-09-01 08:17:44 +0000
commit85d027ea8fd27e64956cb9e7e865f9bb62cee39e (patch)
tree208b856b88d5ca48081159321cf01d6ef1054755 /textproc
parentupdate K12-2000 to 0.14. (diff)
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>
Notes
Notes: svn path=/head/; revision=47261
Diffstat (limited to 'textproc')
-rw-r--r--textproc/ruby-sablot/files/patch-aa17
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