summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfukachan <fukachan>2002-11-16 14:24:46 +0000
committerfukachan <fukachan>2002-11-16 14:24:46 +0000
commit7f453fbe5b60806dde9e256ad2cabb90d2ef7538 (patch)
tree98b56dbbb1460d8ba037eb3c61625312711efe0d
parentc5409a1d35332f9d7541c1127ecf0d53a535a4e6 (diff)
downloadfml8-7f453fbe5b60806dde9e256ad2cabb90d2ef7538.tar.gz
fml8-7f453fbe5b60806dde9e256ad2cabb90d2ef7538.tar.bz2
fml8-7f453fbe5b60806dde9e256ad2cabb90d2ef7538.zip
enable libexec/digest
-rwxr-xr-xINSTALL.sh4
-rw-r--r--fml/lib/FML/Process/Switch.pm6
2 files changed, 7 insertions, 3 deletions
diff --git a/INSTALL.sh b/INSTALL.sh
index 5b329c03..69624710 100755
--- a/INSTALL.sh
+++ b/INSTALL.sh
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: INSTALL.sh,v 1.57 2002/10/26 06:04:28 fukachan Exp $
+# $FML: INSTALL.sh,v 1.58 2002/11/07 10:53:52 fukachan Exp $
#
# Run this from the top-level fml source directory.
@@ -133,7 +133,7 @@ do
mv ${bindir}/$prog.new ${bindir}/$prog
done
-PROGRAMS="fml.pl distribute command error mead";
+PROGRAMS="fml.pl distribute digest command error mead";
PROGRAMS="$PROGRAMS fmlserv fmlconf fmldoc"
PROGRAMS="$PROGRAMS fmlthread fmlthread.cgi"
PROGRAMS="$PROGRAMS makefml makefml.cgi menu.cgi"
diff --git a/fml/lib/FML/Process/Switch.pm b/fml/lib/FML/Process/Switch.pm
index f45e5430..821a464b 100644
--- a/fml/lib/FML/Process/Switch.pm
+++ b/fml/lib/FML/Process/Switch.pm
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: Switch.pm,v 1.75 2002/09/22 14:56:54 fukachan Exp $
+# $FML: Switch.pm,v 1.76 2002/11/07 10:53:52 fukachan Exp $
#
package FML::Process::Switch;
@@ -294,6 +294,7 @@ sub _module_specific_options
if ($myname eq 'fml.pl' ||
$myname eq 'distribute' ||
$myname eq 'command' ||
+ $myname eq 'digest' ||
$myname eq 'mead' ||
$myname eq 'error' ||
$myname eq 'loader' ) {
@@ -408,6 +409,9 @@ sub _module_we_use
elsif ($name eq 'mead' || $name eq 'error') {
$pkg = 'FML::Process::Error';
}
+ elsif ($name eq 'digest') {
+ $pkg = 'FML::Process::Digest';
+ }
elsif ($name eq 'fmlserv') {
$pkg = 'FML::Process::ListServer';
}