[Rt-commit] r6875 - rt/branches/3.6-RELEASE/sbin
ruz at bestpractical.com
ruz at bestpractical.com
Thu Feb 1 21:59:03 EST 2007
Author: ruz
Date: Thu Feb 1 21:59:03 2007
New Revision: 6875
Modified:
rt/branches/3.6-RELEASE/sbin/rt-test-dependencies.in
Log:
* add --with-standalone option
* as well fill defaults for dev mode and standalone within a configure script
Modified: rt/branches/3.6-RELEASE/sbin/rt-test-dependencies.in
==============================================================================
--- rt/branches/3.6-RELEASE/sbin/rt-test-dependencies.in (original)
+++ rt/branches/3.6-RELEASE/sbin/rt-test-dependencies.in Thu Feb 1 21:59:03 2007
@@ -61,6 +61,7 @@
'with-ORACLE', 'with-FASTCGI',
'with-SPEEDYCGI', 'with-MODPERL1',
'with-MODPERL2', 'with-DEV',
+ 'with-STANDALONE',
'download=s',
'repository=s'
);
@@ -73,9 +74,10 @@
# Set up defaults
$args{'with-MASON'} = 1;
$args{'with-CORE'} = 1;
-$args{'with-DEV'} =1;
-$args{'with-CLI'} =1;
-$args{'with-MAILGATE'} =1;
+$args{'with-DEV'} = @RT_DEVEL_MODE@;
+$args{'with-CLI'} = 1;
+$args{'with-MAILGATE'} = 1;
+$args{'with-STANDALONE'} = @RT_STANDALONE@;
{
my $section;
my %always_show_sections = (
@@ -130,6 +132,7 @@
--with-sqlite Database interface and driver for SQLite (unsupported)
--with-oracle Database interface for oracle (unsupported)
+ --with-standalone Libraries needed to support the standalone simple pure perl server
--with-fastcgi Libraries needed to support the fastcgi handler
--with-speedycgi Libraries needed to support the speedycgi handler
--with-modperl1 Libraries needed to support the modperl 1 handler
@@ -199,14 +202,17 @@
Storable 2.08
Apache::Session 1.53
XML::RSS 1.05
-HTTP::Server::Simple 0.07
-HTTP::Server::Simple::Mason 0.09
GD
GD::Graph
GD::Text
Text::WikiFormat 0.76
.
+$deps{'STANDALONE'} = [ _( << '.') ];
+HTTP::Server::Simple 0.07
+HTTP::Server::Simple::Mason 0.09
+.
+
$deps{'MAILGATE'} = [ _( << '.') ];
HTML::TreeBuilder
HTML::FormatText
More information about the Rt-commit
mailing list