6cb2d22084
-- XML::Twig provides a way to process XML documents. It is built on top of XML::Parser. The module offers a tree interface to the document, while allowing you to output the parts of it that have been completely processed. It allows minimal resource (CPU and memory) usage by building the tree only for the parts of the documents that need actual processing. XML::Twig tries to make simple things easy so it tries its best to takes care of a lot of the (usually) annoying (but sometimes necessary) features that come with XML and XML::Parser.
16 lines
557 B
Plaintext
16 lines
557 B
Plaintext
$OpenBSD: patch-Makefile_PL,v 1.1.1.1 2004/05/29 21:14:40 avsm Exp $
|
|
--- Makefile.PL.orig 2004-05-29 22:43:07.000000000 +0100
|
|
+++ Makefile.PL 2004-05-29 22:43:43.000000000 +0100
|
|
@@ -11,10 +11,7 @@ xml_grep|y|XML grep - grep XML files usi
|
|
xml_spellcheck|y|spellcheck XML files skipping tags
|
|
QUERIES
|
|
my ($program, $default, $description) = split /\|/, $_;
|
|
- if (prompt("Do you want to install '$program' ($description)?",
|
|
- $default) =~ /^y/) {
|
|
- push(@programs, $program);
|
|
- }
|
|
+ push(@programs, $program);
|
|
}
|
|
|
|
WriteMakefile(
|