Ignore:
Timestamp:
Jun 2, 2009, 11:53:14 AM (15 years ago)
Author:
Nelson Elhage <nelhage@mit.edu>
Branches:
master, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
8daf504
Parents:
ee183be
git-author:
Nelson Elhage <nelhage@mit.edu> (06/01/09 22:45:53)
git-committer:
Nelson Elhage <nelhage@mit.edu> (06/02/09 11:53:14)
Message:
Load perl code from the filesystem at runtime.

Remove perlwrap.pm and associated code, and instead do 'use BarnOwl'
at boot time to load cdoe from the file system at runtime. In
addition, add appropriate 'use' statements to the .pm files to cause
everything to get loaded.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • perl/lib/BarnOwl.pm

    ree183be rfd8dfe7  
    33
    44package BarnOwl;
     5
     6BEGIN {
     7# bootstrap in C bindings and glue
     8    *owl:: = \*BarnOwl::;
     9    bootstrap BarnOwl 1.2;
     10};
     11
     12use lib(get_data_dir() . "/lib");
     13use lib(get_config_dir() . "/lib");
     14
     15use BarnOwl::Hook;
     16use BarnOwl::Hooks;
     17use BarnOwl::Message;
     18use BarnOwl::Style;
     19use BarnOwl::Timer;
    520
    621=head1 NAME
     
    136151
    137152=cut
    138 
    139 
    140 BEGIN {
    141 # bootstrap in C bindings and glue
    142     *owl:: = \*BarnOwl::;
    143     bootstrap BarnOwl 1.2;
    144 };
    145 
    146 use lib(get_data_dir() . "/lib");
    147 use lib(get_config_dir() . "/lib");
    148153
    149154# perlconfig.c will set this to the value of the -c command-line
Note: See TracChangeset for help on using the changeset viewer.