Help for this page

Select Code to Download


  1. or download this
    DIRFILESEP = \\
    DFSEP = $(DIRFILESEP)
    
  2. or download this
    sub init_DIRFILESEP {
        my($self) = shift;
    ...
                              $self->is_make_type('dmake') ? '\\\\'
                                                           : '\\';
    }
    
  3. or download this
    sub init_DIRFILESEP {
        my($self) = shift;
    ...
                              $self->is_make_type('dmake') ? '\\'
                                                           : '\\';
    }
    
  4. or download this
    C:\sisyphusion\IO-React-1.03>perl makefile.PL
    Checking if your kit is complete...
    ...
    
    C:\sisyphusion\IO-React-1.03>dmake
    dmake:  Error: -- `C:\_32\strawberry514\perl\libConfig.pm' not found, 
    +and can't be made
    
  5. or download this
    DIRFILESEP = \
    DFSEP = $(DIRFILESEP)
    
  6. or download this
    sub init_DIRFILESEP {
         return '\\\\';
    }