[Freeswitch-svn] [commit] r8802 -	freeswitch/trunk/scripts/socket/FreeSWITCH
    Freeswitch SVN 
    mikej at freeswitch.org
       
    Mon Jun 16 12:53:34 EDT 2008
    
    
  
Author: mikej
Date: Mon Jun 16 12:53:34 2008
New Revision: 8802
Added:
   freeswitch/trunk/scripts/socket/FreeSWITCH/Makefile.PL
Modified:
   freeswitch/trunk/scripts/socket/FreeSWITCH/Client.pm
Log:
start of packaging
Modified: freeswitch/trunk/scripts/socket/FreeSWITCH/Client.pm
==============================================================================
--- freeswitch/trunk/scripts/socket/FreeSWITCH/Client.pm	(original)
+++ freeswitch/trunk/scripts/socket/FreeSWITCH/Client.pm	Mon Jun 16 12:53:34 2008
@@ -4,7 +4,7 @@
 use IO::Select;
 use Data::Dumper;
 
-
+$VERSION = "1.0";
 
 sub init($;$) {
   my $proto = shift;
Added: freeswitch/trunk/scripts/socket/FreeSWITCH/Makefile.PL
==============================================================================
--- (empty file)
+++ freeswitch/trunk/scripts/socket/FreeSWITCH/Makefile.PL	Mon Jun 16 12:53:34 2008
@@ -0,0 +1,10 @@
+use ExtUtils::MakeMaker;
+require 5.008;
+WriteMakefile(
+	NAME => 'FreeSWITCH::Client',
+	VERSION_FROM => 'Client.pm',
+	PREREQ_PM => {
+		'IO::Socket::INET' => 1.17,
+		'IO::Select' => 1.17,
+	},
+);
    
    
More information about the Freeswitch-svn
mailing list