Changeset 762

Show
Ignore:
Timestamp:
10/27/07 21:10:49 (6 years ago)
Author:
tokuhirom
Message:

lang/perl/mobirc: added Makefile.PL for easy install.

Location:
lang/perl/mobirc/trunk/mobirc
Files:
2 added
2 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/mobirc/trunk/mobirc/lib/Mobirc/HTTPD.pm

    r761 r762  
    2020use Scalar::Util qw/blessed/; 
    2121 
     22use Mobirc; 
    2223use Mobirc::Util; 
    2324 
     
    2526use constant cookie_ttl => 86400 * 3;    # 3 days 
    2627 
    27 our $VERSION = 0.01;                     # TODO: should use $Mobirc::VERSION 
    2828our $GLOBAL_CONFIG;                      # TODO: should use HEAP. 
    2929 
     
    276276        user_agent           => $c->{user_agent}, 
    277277        title                => $c->{config}->{httpd}->{title}, 
    278         version              => $VERSION, 
     278        version              => $Mobirc::VERSION, 
    279279 
    280280        %{ $c->{irc_heap} }, 
  • lang/perl/mobirc/trunk/mobirc/mobirc

    r756 r762  
    1313use lib File::Spec->catfile( $FindBin::Bin, 'lib'); 
    1414 
     15use Mobirc; 
    1516use Mobirc::Util; 
    1617use Mobirc::HTTPD; 
    1718use Mobirc::IRCClient; 
    18  
    19 our $VERSION = '0.01'; 
    2019 
    2120$SIG{INT} = sub { die "SIGINT!\n" };