[Rt-commit] r12738 - in rt/branches/3.8-TESTING: .

sartak at bestpractical.com sartak at bestpractical.com
Thu May 29 11:59:34 EDT 2008


Author: sartak
Date: Thu May 29 11:59:32 2008
New Revision: 12738

Modified:
   rt/branches/3.8-TESTING/   (props changed)
   rt/branches/3.8-TESTING/configure.ac
   rt/branches/3.8-TESTING/sbin/rt-test-dependencies.in

Log:
 r61224 at onn:  sartak | 2008-05-29 11:58:55 -0400
 Make Net::Server a standalone dep, it doesn't need to be in configure


Modified: rt/branches/3.8-TESTING/configure.ac
==============================================================================
--- rt/branches/3.8-TESTING/configure.ac	(original)
+++ rt/branches/3.8-TESTING/configure.ac	Thu May 29 11:59:32 2008
@@ -293,19 +293,6 @@
 fi
 AC_SUBST(RT_GPG)
 
-dnl RT's forking server support
-AC_CHECK_PROG([RT_FORKING], [forking], "yes", "no")
-AC_ARG_ENABLE(forking,
-            AC_HELP_STRING([--enable-forking],
-                           [Turns on forking-server support]),
-            RT_FORKING=$enableval)
-if test "$RT_FORKING" = yes; then
-        RT_FORKING="1"
-elif test "$RT_FORKING" = no; then
-        RT_FORKING="0"
-fi
-AC_SUBST(RT_FORKING)
-
 dnl This section maps the variable names this script 'natively' generates
 dnl to their existing names. They should be removed from here as the .in
 dnl files are changed to use the new names.

Modified: rt/branches/3.8-TESTING/sbin/rt-test-dependencies.in
==============================================================================
--- rt/branches/3.8-TESTING/sbin/rt-test-dependencies.in	(original)
+++ rt/branches/3.8-TESTING/sbin/rt-test-dependencies.in	Thu May 29 11:59:32 2008
@@ -63,7 +63,7 @@
     'with-ORACLE',                        'with-FASTCGI',
     'with-SPEEDYCGI',                     'with-MODPERL1',
     'with-MODPERL2',                      'with-DEV',
-    'with-STANDALONE',                    'with-FORKING',
+    'with-STANDALONE',
 
     'with-GPG',
     'with-ICAL',
@@ -92,7 +92,6 @@
     'with-ICAL' => 1,
     'with-SMTP' => 1,
     'with-GRAPHVIZ' => @RT_GRAPHVIZ@,
-    'with-FORKING' => @RT_FORKING@,
 );
 $args{$_} = $default{$_} foreach grep !exists $args{$_}, keys %default;
 
@@ -253,9 +252,6 @@
 $deps{'STANDALONE'} = [ text_to_hash( << '.') ];
 HTTP::Server::Simple 0.07
 HTTP::Server::Simple::Mason 0.09
-.
-
-$deps{'FORKING'} = [ text_to_hash( << '.') ];
 Net::Server
 Net::Server::PreForking
 .


More information about the Rt-commit mailing list