Print this page
3900 illumos will not build against gcc compiled perl
   1 #
   2 # Copyright (c) 2002, 2008 Oracle and/or its affiliates. All rights reserved.
   3 #
   4 
   5 #
   6 # Catalog.pm contains perl code for exacct catalog tag manipulation.
   7 # 
   8 
   9 require 5.8.4;
  10 use strict;
  11 use warnings;
  12 
  13 package Sun::Solaris::Exacct::Catalog;
  14 
  15 our $VERSION = '1.3';
  16 use Carp;
  17 use XSLoader;
  18 XSLoader::load(__PACKAGE__, $VERSION);
  19 
  20 # %_Constants and @_Constants are set up by the XSUB bootstrap() function.
  21 our (@EXPORT_OK, %EXPORT_TAGS, @_Constants, %_Constants);
  22 @EXPORT_OK = @_Constants;
  23 %EXPORT_TAGS = (CONSTANTS => \@_Constants, ALL => \@EXPORT_OK);
  24 
  25 use base qw(Exporter);
  26 
  27 #
  28 # Class interface.
  29 #


   1 #
   2 # Copyright (c) 2002, 2008 Oracle and/or its affiliates. All rights reserved.
   3 #
   4 
   5 #
   6 # Catalog.pm contains perl code for exacct catalog tag manipulation.
   7 # 
   8 
   9 require 5.0010;
  10 use strict;
  11 use warnings;
  12 
  13 package Sun::Solaris::Exacct::Catalog;
  14 
  15 our $VERSION = '1.3';
  16 use Carp;
  17 use XSLoader;
  18 XSLoader::load(__PACKAGE__, $VERSION);
  19 
  20 # %_Constants and @_Constants are set up by the XSUB bootstrap() function.
  21 our (@EXPORT_OK, %EXPORT_TAGS, @_Constants, %_Constants);
  22 @EXPORT_OK = @_Constants;
  23 %EXPORT_TAGS = (CONSTANTS => \@_Constants, ALL => \@EXPORT_OK);
  24 
  25 use base qw(Exporter);
  26 
  27 #
  28 # Class interface.
  29 #