[Bps-public-commit] r19969 - RT-Authen-ExternalAuth/trunk

falcone at bestpractical.com falcone at bestpractical.com
Wed Jun 10 16:36:41 EDT 2009


Author: falcone
Date: Wed Jun 10 16:36:36 2009
New Revision: 19969

Modified:
   RT-Authen-ExternalAuth/trunk/   (props changed)
   RT-Authen-ExternalAuth/trunk/Makefile.PL

Log:
 r48200 at ketch:  falcone | 2009-06-10 16:36:07 -0400
 Make feature/recommends more compatible with modern MI


Modified: RT-Authen-ExternalAuth/trunk/Makefile.PL
==============================================================================
--- RT-Authen-ExternalAuth/trunk/Makefile.PL	(original)
+++ RT-Authen-ExternalAuth/trunk/Makefile.PL	Wed Jun 10 16:36:36 2009
@@ -7,18 +7,26 @@
 
 all_from('lib/RT/Authen/ExternalAuth.pm');
 
-features(
-  'SSL LDAP Connections' => [
+feature 'SSL LDAP Connections' =>
     -default => 0,
-    'Net::SSLeay' => 0],
-  'External LDAP Sources' => [
+    recommends('Net::SSLeay' => 0),
+    ;
+
+feature 'External LDAP Sources' => 
     -default => 1,
-    'Net::LDAP' => 0],
-  'External DBI Sources' => [
+    recommends('Net::LDAP' => 0),
+    ;
+
+feature 'External DBI Sources' =>
     -default => 1,
-    'DBI' => 0],
-  'SSO Cookie Sources' => [
+    recommends('DBI' => 0),
+    ;
+
+feature 'SSO Cookie Sources' => 
     -default => 1,
-    'CGI::Cookies' => 0]
-);
+    recommends('CGI::Cookies' => 0),
+    ;
+
+&auto_install();
+
 &WriteAll;



More information about the Bps-public-commit mailing list