summaryrefslogtreecommitdiff
path: root/textproc/ruby-sablot/files/patch-extconf.rb
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@FreeBSD.org>2001-03-09 16:08:49 +0000
committerAkinori MUSHA <knu@FreeBSD.org>2001-03-09 16:08:49 +0000
commit59a3efc65c72ba88922676669c8b3968ce5ec743 (patch)
tree0a102421faf41090073ae39009d90cf139f1bd94 /textproc/ruby-sablot/files/patch-extconf.rb
parentrename package-name isc-dhcp3-3.0.xx to isc-dhcp-3.0.xx. (diff)
Add ruby-sablot, a Ruby interface to the Sablotron XSLT processor.
Notes
Notes: svn path=/head/; revision=39311
Diffstat (limited to 'textproc/ruby-sablot/files/patch-extconf.rb')
-rw-r--r--textproc/ruby-sablot/files/patch-extconf.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/textproc/ruby-sablot/files/patch-extconf.rb b/textproc/ruby-sablot/files/patch-extconf.rb
new file mode 100644
index 000000000000..23f7e51ff5a8
--- /dev/null
+++ b/textproc/ruby-sablot/files/patch-extconf.rb
@@ -0,0 +1,18 @@
+--- extconf.rb.orig Sun Dec 3 23:50:31 2000
++++ extconf.rb Sat Mar 10 00:35:37 2001
+@@ -2,10 +2,10 @@
+
+ dir_config('sablot')
+
+-$LOCAL_LIBS += " -L/usr/local/lib -lsablot -lxmlparse -lxmltok"
+-
+-if have_header("sablot.h") &&
+- have_library("sablot", "SablotProcessStrings") &&
+- have_library("xmltok", "XML_ParserCreate")
++if have_header("expat.h") &&
++ have_header("sablot.h") &&
++ have_library("expat", "XML_ParserCreate") &&
++ have_library("iconv") &&
++ have_library("sablot", "SablotProcessStrings")
+ create_makefile("sablot")
+ end