home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / MM_NW5.pm < prev    next >
Text File  |  2003-11-07  |  7KB  |  275 lines

  1. package ExtUtils::MM_NW5;
  2.  
  3. =head1 NAME
  4.  
  5. ExtUtils::MM_NW5 - methods to override UN*X behaviour in ExtUtils::MakeMaker
  6.  
  7. =head1 SYNOPSIS
  8.  
  9.  use ExtUtils::MM_NW5; # Done internally by ExtUtils::MakeMaker if needed
  10.  
  11. =head1 DESCRIPTION
  12.  
  13. See ExtUtils::MM_Unix for a documentation of the methods provided
  14. there. This package overrides the implementation of these methods, not
  15. the semantics.
  16.  
  17. =over
  18.  
  19. =cut 
  20.  
  21. use strict;
  22. use Config;
  23. use File::Basename;
  24.  
  25. use vars qw(@ISA $VERSION);
  26. $VERSION = '2.06';
  27.  
  28. require ExtUtils::MM_Win32;
  29. @ISA = qw(ExtUtils::MM_Win32);
  30.  
  31. use ExtUtils::MakeMaker qw( &neatvalue );
  32.  
  33. $ENV{EMXSHELL} = 'sh'; # to run `commands`
  34.  
  35. my $BORLAND  = 1 if $Config{'cc'} =~ /^bcc/i;
  36. my $GCC      = 1 if $Config{'cc'} =~ /^gcc/i;
  37. my $DMAKE    = 1 if $Config{'make'} =~ /^dmake/i;
  38.  
  39.  
  40. =item os_flavor
  41.  
  42. We're Netware in addition to being Windows.
  43.  
  44. =cut
  45.  
  46. sub os_flavor {
  47.     my $self = shift;
  48.     return ($self->SUPER::os_flavor, 'Netware');
  49. }
  50.  
  51. =item init_platform (o)
  52.  
  53. Add Netware macros.
  54.  
  55. LIBPTH, BASE_IMPORT, NLM_VERSION, MPKTOOL, TOOLPATH, BOOT_SYMBOL,
  56. NLM_SHORT_NAME, INCLUDE, PATH, MM_NW5_REVISION
  57.  
  58.  
  59. =item platform_constants
  60.  
  61. Add Netware macros initialized above to the Makefile.
  62.  
  63. =cut
  64.  
  65. sub init_platform {
  66.     my($self) = shift;
  67.  
  68.     # To get Win32's setup.
  69.     $self->SUPER::init_platform;
  70.  
  71.     # incpath is copied to makefile var INCLUDE in constants sub, here just 
  72.     # make it empty
  73.     my $libpth = $Config{'libpth'};
  74.     $libpth =~ s( )(;);
  75.     $self->{'LIBPTH'} = $libpth;
  76.  
  77.     $self->{'BASE_IMPORT'} = $Config{'base_import'};
  78.  
  79.     # Additional import file specified from Makefile.pl
  80.     if($self->{'base_import'}) {
  81.         $self->{'BASE_IMPORT'} .= ', ' . $self->{'base_import'};
  82.     }
  83.  
  84.     $self->{'NLM_VERSION'} = $Config{'nlm_version'};
  85.     $self->{'MPKTOOL'}    = $Config{'mpktool'};
  86.     $self->{'TOOLPATH'}    = $Config{'toolpath'};
  87.  
  88.     (my $boot = $self->{'NAME'}) =~ s/:/_/g;
  89.     $self->{'BOOT_SYMBOL'}=$boot;
  90.  
  91.     # If the final binary name is greater than 8 chars,
  92.     # truncate it here.
  93.     if(length($self->{'BASEEXT'}) > 8) {
  94.         $self->{'NLM_SHORT_NAME'} = substr($self->{'BASEEXT'},0,8);
  95.     }
  96.  
  97.     # Get the include path and replace the spaces with ;
  98.     # Copy this to makefile as INCLUDE = d:\...;d:\;
  99.     ($self->{INCLUDE} = $Config{'incpath'}) =~ s/([ ]*)-I/;/g;
  100.  
  101.     # Set the path to CodeWarrior binaries which might not have been set in
  102.     # any other place
  103.     $self->{PATH} = '$(PATH);$(TOOLPATH)';
  104.  
  105.     $self->{MM_NW5_VERSION} = $VERSION;
  106. }
  107.  
  108. sub platform_constants {
  109.     my($self) = shift;
  110.     my $make_frag = '';
  111.  
  112.     # Setup Win32's constants.
  113.     $make_frag .= $self->SUPER::platform_constants;
  114.  
  115.     foreach my $macro (qw(LIBPTH BASE_IMPORT NLM_VERSION MPKTOOL 
  116.                           TOOLPATH BOOT_SYMBOL NLM_SHORT_NAME INCLUDE PATH
  117.                           MM_NW5_VERSION
  118.                       ))
  119.     {
  120.         next unless defined $self->{$macro};
  121.         $make_frag .= "$macro = $self->{$macro}\n";
  122.     }
  123.  
  124.     return $make_frag;
  125. }
  126.  
  127.  
  128. =item const_cccmd (o)
  129.  
  130. =cut
  131.  
  132. sub const_cccmd {
  133.     my($self,$libperl)=@_;
  134.     return $self->{CONST_CCCMD} if $self->{CONST_CCCMD};
  135.     return '' unless $self->needs_linking();
  136.     return $self->{CONST_CCCMD} = <<'MAKE_FRAG';
  137. CCCMD = $(CC) $(CCFLAGS) $(INC) $(OPTIMIZE) \
  138.     $(PERLTYPE) $(MPOLLUTE) -o $@ \
  139.     -DVERSION=\"$(VERSION)\" -DXS_VERSION=\"$(XS_VERSION)\"
  140. MAKE_FRAG
  141.  
  142. }
  143.  
  144.  
  145. =item static_lib (o)
  146.  
  147. =cut
  148.  
  149. sub static_lib {
  150.     my($self) = @_;
  151.  
  152.     return '' unless $self->has_link_code;
  153.  
  154.     my $m = <<'END';
  155. $(INST_STATIC): $(OBJECT) $(MYEXTLIB) $(INST_ARCHAUTODIR)$(DIRFILESEP).exists
  156.     $(RM_RF) $@
  157. END
  158.  
  159.     # If this extension has it's own library (eg SDBM_File)
  160.     # then copy that to $(INST_STATIC) and add $(OBJECT) into it.
  161.     $m .= <<'END'  if $self->{MYEXTLIB};
  162.     $self->{CP} $(MYEXTLIB) $@
  163. END
  164.  
  165.     my $ar_arg;
  166.     if( $BORLAND ) {
  167.         $ar_arg = '$@ $(OBJECT:^"+")';
  168.     }
  169.     elsif( $GCC ) {
  170.         $ar_arg = '-ru $@ $(OBJECT)';
  171.     }
  172.     else {
  173.         $ar_arg = '-type library -o $@ $(OBJECT)';
  174.     }
  175.  
  176.     $m .= sprintf <<'END', $ar_arg;
  177.     $(AR) %s
  178.     $(NOECHO) $(ECHO) "$(EXTRALIBS)" > $(INST_ARCHAUTODIR)\extralibs.ld
  179.     $(CHMOD) 755 $@
  180. END
  181.  
  182.     $m .= <<'END' if $self->{PERL_SRC};
  183.     $(NOECHO) $(ECHO) "$(EXTRALIBS)" >> $(PERL_SRC)\ext.libs
  184.     
  185.     
  186. END
  187.     $m .= $self->dir_target('$(INST_ARCHAUTODIR)');
  188.     return $m;
  189. }
  190.  
  191. =item dynamic_lib (o)
  192.  
  193. Defines how to produce the *.so (or equivalent) files.
  194.  
  195. =cut
  196.  
  197. sub dynamic_lib {
  198.     my($self, %attribs) = @_;
  199.     return '' unless $self->needs_linking(); #might be because of a subdir
  200.  
  201.     return '' unless $self->has_link_code;
  202.  
  203.     my($otherldflags) = $attribs{OTHERLDFLAGS} || ($BORLAND ? 'c0d32.obj': '');
  204.     my($inst_dynamic_dep) = $attribs{INST_DYNAMIC_DEP} || "";
  205.     my($ldfrom) = '$(LDFROM)';
  206.  
  207.     (my $boot = $self->{NAME}) =~ s/:/_/g;
  208.  
  209.     my $m = <<'MAKE_FRAG';
  210. # This section creates the dynamically loadable $(INST_DYNAMIC)
  211. # from $(OBJECT) and possibly $(MYEXTLIB).
  212. OTHERLDFLAGS = '.$otherldflags.'
  213. INST_DYNAMIC_DEP = '.$inst_dynamic_dep.'
  214.  
  215. # Create xdc data for an MT safe NLM in case of mpk build
  216. $(INST_DYNAMIC): $(OBJECT) $(MYEXTLIB) $(BOOTSTRAP)
  217.     $(NOECHO) $(ECHO) Export boot_$(BOOT_SYMBOL) > $(BASEEXT).def
  218.     $(NOECHO) $(ECHO) $(BASE_IMPORT) >> $(BASEEXT).def
  219.     $(NOECHO) $(ECHO) Import @$(PERL_INC)\perl.imp >> $(BASEEXT).def
  220. MAKE_FRAG
  221.  
  222.  
  223.     if ( $self->{CCFLAGS} =~ m/ -DMPK_ON /) {
  224.         $m .= <<'MAKE_FRAG';
  225.     $(MPKTOOL) $(XDCFLAGS) $(BASEEXT).xdc
  226.     $(NOECHO) $(ECHO) xdcdata $(BASEEXT).xdc >> $(BASEEXT).def
  227. MAKE_FRAG
  228.     }
  229.  
  230.     # Reconstruct the X.Y.Z version.
  231.     my $version = join '.', map { sprintf "%d", $_ }
  232.                               $] =~ /(\d)\.(\d{3})(\d{2})/;
  233.     $m .= sprintf '    $(LD) $(LDFLAGS) $(OBJECT:.obj=.obj) -desc "Perl %s Extension ($(BASEEXT))  XS_VERSION: $(XS_VERSION)" -nlmversion $(NLM_VERSION)', $version;
  234.  
  235.     # Taking care of long names like FileHandle, ByteLoader, SDBM_File etc
  236.     if($self->{NLM_SHORT_NAME}) {
  237.         # In case of nlms with names exceeding 8 chars, build nlm in the 
  238.         # current dir, rename and move to auto\lib.
  239.         $m .= q{ -o $(NLM_SHORT_NAME).$(DLEXT)}
  240.     } else {
  241.         $m .= q{ -o $(INST_AUTODIR)\\$(BASEEXT).$(DLEXT)}
  242.     }
  243.  
  244.     # Add additional lib files if any (SDBM_File)
  245.     $m .= q{ $(MYEXTLIB) } if $self->{MYEXTLIB};
  246.  
  247.     $m .= q{ $(PERL_INC)\Main.lib -commandfile $(BASEEXT).def}."\n";
  248.  
  249.     if($self->{NLM_SHORT_NAME}) {
  250.         $m .= <<'MAKE_FRAG';
  251.     if exist $(INST_AUTODIR)\$(NLM_SHORT_NAME).$(DLEXT) del $(INST_AUTODIR)\$(NLM_SHORT_NAME).$(DLEXT) 
  252.     move $(NLM_SHORT_NAME).$(DLEXT) $(INST_AUTODIR)
  253. MAKE_FRAG
  254.     }
  255.  
  256.     $m .= <<'MAKE_FRAG';
  257.  
  258.     $(CHMOD) 755 $@
  259. MAKE_FRAG
  260.  
  261.     $m .= $self->dir_target('$(INST_ARCHAUTODIR)');
  262.  
  263.     return $m;
  264. }
  265.  
  266.  
  267. 1;
  268. __END__
  269.  
  270. =back
  271.  
  272. =cut 
  273.  
  274.  
  275.