Result:
found more than 440 distributions - search limited to the first 2001 files matching your query ( run in 1.327 )


Alien-Libtensorflow

 view release on metacpan or  search on metacpan

CONTRIBUTING  view on Meta::CPAN

<<<=== COPYRIGHT CONTRIBUTIONS ===>>>

[ BEGIN, APTECH FAMILY COPYRIGHT ASSIGNMENT AGREEMENT ]

By contributing to this repository, you agree that any and all such Contributions and derivative works thereof shall immediately become part of the APTech Family of software and documentation, and you accept and agree to the following legally-binding...

1. Definitions.

"You" or "Your" shall mean the copyright owner, or legal entity authorized by the copyright owner, that is making this Agreement.  For legal entities, the entity making a Contribution and all other entities that control, are controlled by, or are und...

CONTRIBUTING  view on Meta::CPAN


"Contribution" shall mean any original work of authorship, including any changes or additions or enhancements to an existing work, that is intentionally submitted by You to this repository for inclusion in, or documentation of, any of the products or...

2. Assignment of Copyright.  Subject to the terms and conditions of this Agreement, and for good and valuable consideration, receipt of which You acknowledge, You hereby transfer to the Delaware corporation named Auto-Parallel Technologies, Inc. with...

You hereby agree that if You have or acquire hereafter any patent or interface copyright or other intellectual property interest dominating the software or documentation contributed to by the Work (or use of that software or documentation), such domi...

You hereby represent and warrant that You are the sole copyright holder for the Work and that You have the right and power to enter into this legally-binding contractual agreement.  You hereby indemnify and hold harmless APTech, its heirs, assignees,...

3. Grant of Patent License.  Subject to the terms and conditions of this Agreement, You hereby grant to APTech and to recipients of software distributed by APTech a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as ...

4. You represent that you are legally entitled to assign the above copyright and grant the above patent license.  If your employer(s) or contractee(s) have rights to intellectual property that you create that includes your Contributions, then you rep...

 view all matches for this distribution


Alien-MuPDF

 view release on metacpan or  search on metacpan

t/inline.t  view on Meta::CPAN

	};

	Inline->import( with => qw(Alien::MuPDF) );

	subtest 'Retrieve a constant' => sub {
		Inline->bind( C => q|
			char* get_fitz_version() {
				return FZ_VERSION;
			}
		|, ENABLE => AUTOWRAP => );

t/inline.t  view on Meta::CPAN

		#      - or a dot followed by digits
		like( get_fitz_version(), qr/^\d+\.\d+([a-z]|\.\d+)?$/);
	};

	subtest 'Call a function' => sub {
		Inline->bind( C => q|
			int can_create_context() {
				fz_context* ctx = fz_new_context(NULL, NULL, FZ_STORE_UNLIMITED);
				return NULL != ctx;
			}
		|, ENABLE => AUTOWRAP => );

 view all matches for this distribution


Alien-OpenSSL-Static

 view release on metacpan or  search on metacpan

bin/openssl-env-bash  view on Meta::CPAN

use warnings;

use Alien::OpenSSL::Static;
use Text::ParseWords qw( shellwords );

my $bindir  = Alien::OpenSSL::Static->bin_dir;
my $cflags  = Alien::OpenSSL::Static->cflags;
my $ldflags = Alien::OpenSSL::Static->libs;

my $cpath = join ':', map {s/^-I//; $_} shellwords( $cflags );
my $librarypath = join ':', map {s/^-L//; $_} grep {m/^-L/} shellwords( $ldflags );

exec(qq{$ENV{SHELL} -c 'export PATH="$bindir:\$PATH" CFLAGS="$cflags \$CFLAGS" LDFLAGS="$ldflags \$LDFLAGS" CPATH="$cpath:\$CPATH" LIBRARY_PATH="$librarypath:\$LIBRARY_PATH";\$SHELL'});

 view all matches for this distribution


Alien-Proj4

 view release on metacpan or  search on metacpan

lib/Alien/Proj4.pm  view on Meta::CPAN

  my ($class) = @_;
  my $incflags = $class->cflags;
  my $libflags = $class->libs;

  require Inline;
  Inline->bind(C => <<'EOF', inc => $incflags, libs => $libflags) unless defined &list_projections;
#include "projects.h"
HV *list_projections() {
  struct PJ_LIST *lp;
  SV* scalar_val;
  HV *hv = newHV();

 view all matches for this distribution


Alien-Prototype-Carousel

 view release on metacpan or  search on metacpan

carousel.js  view on Meta::CPAN

		this.animRunning = "none";
    this.requestIsRunning = false;
    
		// add afterFinish options to animParameters (store old function)
		this.animAfterFinish = this.options.animParameters.afterFinish;
		Object.extend(this.options.animParameters, {afterFinish:  this._animDone.bind(this), queue: { position:'end', scope: this.options.queue }});
	  
		// Event bindings
		this.prevScroll = this._prevScroll.bindAsEventListener(this);
		this.nextScroll = this._nextScroll.bindAsEventListener(this);
		this.onComplete = this._onComplete.bindAsEventListener(this);
		this.onFailure  = this._onFailure.bindAsEventListener(this);

		Event.observe(this.options.prevElementID, "click", this.prevScroll);
		Event.observe(this.options.nextElementID, "click", this.nextScroll);
		
		// Get DOM UL element

 view all matches for this distribution


Alien-Prototype

 view release on metacpan or  search on metacpan

prototype.js  view on Meta::CPAN

  argumentNames: function() {
    var names = this.toString().match(/^[\s\(]*function[^(]*\((.*?)\)/)[1].split(",").invoke("strip");
    return names.length == 1 && !names[0] ? [] : names;
  },

  bind: function() {
    if (arguments.length < 2 && arguments[0] === undefined) return this;
    var __method = this, args = $A(arguments), object = args.shift();
    return function() {
      return __method.apply(object, args.concat($A(arguments)));
    }
  },

  bindAsEventListener: function() {
    var __method = this, args = $A(arguments), object = args.shift();
    return function(event) {
      return __method.apply(object, [event || window.event].concat(args));
    }
  },

prototype.js  view on Meta::CPAN

  },

  wrap: function(wrapper) {
    var __method = this;
    return function() {
      return wrapper.apply(this, [__method.bind(this)].concat($A(arguments)));
    }
  },

  methodize: function() {
    if (this._methodized) return this._methodized;

prototype.js  view on Meta::CPAN


    this.registerCallback();
  },

  registerCallback: function() {
    this.timer = setInterval(this.onTimerEvent.bind(this), this.frequency * 1000);
  },

  execute: function() {
    this.callback(this);
  },

prototype.js  view on Meta::CPAN

        expr = expr.substring('[' == match[3] ? match[1].length : match[0].length);
        match = pattern.exec(expr);
      }

      return before + String.interpret(ctx);
    }.bind(this));
  }
});
Template.Pattern = /(^|.|\r|\n)(#\{(.*?)\})/;

var $break = { };

var Enumerable = {
  each: function(iterator, context) {
    var index = 0;
    iterator = iterator.bind(context);
    try {
      this._each(function(value) {
        iterator(value, index++);
      });
    } catch (e) {

prototype.js  view on Meta::CPAN

    }
    return this;
  },

  eachSlice: function(number, iterator, context) {
    iterator = iterator ? iterator.bind(context) : Prototype.K;
    var index = -number, slices = [], array = this.toArray();
    while ((index += number) < array.length)
      slices.push(array.slice(index, index+number));
    return slices.collect(iterator, context);
  },

  all: function(iterator, context) {
    iterator = iterator ? iterator.bind(context) : Prototype.K;
    var result = true;
    this.each(function(value, index) {
      result = result && !!iterator(value, index);
      if (!result) throw $break;
    });
    return result;
  },

  any: function(iterator, context) {
    iterator = iterator ? iterator.bind(context) : Prototype.K;
    var result = false;
    this.each(function(value, index) {
      if (result = !!iterator(value, index))
        throw $break;
    });
    return result;
  },

  collect: function(iterator, context) {
    iterator = iterator ? iterator.bind(context) : Prototype.K;
    var results = [];
    this.each(function(value, index) {
      results.push(iterator(value, index));
    });
    return results;
  },

  detect: function(iterator, context) {
    iterator = iterator.bind(context);
    var result;
    this.each(function(value, index) {
      if (iterator(value, index)) {
        result = value;
        throw $break;

prototype.js  view on Meta::CPAN

    });
    return result;
  },

  findAll: function(iterator, context) {
    iterator = iterator.bind(context);
    var results = [];
    this.each(function(value, index) {
      if (iterator(value, index))
        results.push(value);
    });
    return results;
  },

  grep: function(filter, iterator, context) {
    iterator = iterator ? iterator.bind(context) : Prototype.K;
    var results = [];

    if (Object.isString(filter))
      filter = new RegExp(filter);

prototype.js  view on Meta::CPAN

      return slice;
    });
  },

  inject: function(memo, iterator, context) {
    iterator = iterator.bind(context);
    this.each(function(value, index) {
      memo = iterator(memo, value, index);
    });
    return memo;
  },

prototype.js  view on Meta::CPAN

      return value[method].apply(value, args);
    });
  },

  max: function(iterator, context) {
    iterator = iterator ? iterator.bind(context) : Prototype.K;
    var result;
    this.each(function(value, index) {
      value = iterator(value, index);
      if (result == undefined || value >= result)
        result = value;
    });
    return result;
  },

  min: function(iterator, context) {
    iterator = iterator ? iterator.bind(context) : Prototype.K;
    var result;
    this.each(function(value, index) {
      value = iterator(value, index);
      if (result == undefined || value < result)
        result = value;
    });
    return result;
  },

  partition: function(iterator, context) {
    iterator = iterator ? iterator.bind(context) : Prototype.K;
    var trues = [], falses = [];
    this.each(function(value, index) {
      (iterator(value, index) ?
        trues : falses).push(value);
    });

prototype.js  view on Meta::CPAN

    });
    return results;
  },

  reject: function(iterator, context) {
    iterator = iterator.bind(context);
    var results = [];
    this.each(function(value, index) {
      if (!iterator(value, index))
        results.push(value);
    });
    return results;
  },

  sortBy: function(iterator, context) {
    iterator = iterator.bind(context);
    return this.map(function(value, index) {
      return {value: value, criteria: iterator(value, index)};
    }).sort(function(left, right) {
      var a = left.criteria, b = right.criteria;
      return a < b ? -1 : a > b ? 1 : 0;

prototype.js  view on Meta::CPAN

      Ajax.Responders.dispatch('onCreate', this, response);

      this.transport.open(this.method.toUpperCase(), this.url,
        this.options.asynchronous);

      if (this.options.asynchronous) this.respondToReadyState.bind(this).defer(1);

      this.transport.onreadystatechange = this.onStateChange.bind(this);
      this.setRequestHeaders();

      this.body = this.method == 'post' ? (this.options.postBody || params) : null;
      this.transport.send(this.body);

prototype.js  view on Meta::CPAN

    options = options || { };
    var onComplete = options.onComplete;
    options.onComplete = (function(response, param) {
      this.updateContent(response.responseText);
      if (Object.isFunction(onComplete)) onComplete(response, param);
    }).bind(this);

    $super(url, options);
  },

  updateContent: function(responseText) {

prototype.js  view on Meta::CPAN

      }
      else receiver.update(responseText);
    }

    if (this.success()) {
      if (this.onComplete) this.onComplete.bind(this).defer();
    }
  }
});

Ajax.PeriodicalUpdater = Class.create(Ajax.Base, {

prototype.js  view on Meta::CPAN


    this.start();
  },

  start: function() {
    this.options.onComplete = this.updateComplete.bind(this);
    this.onTimerEvent();
  },

  stop: function() {
    this.updater.options.onComplete = undefined;

prototype.js  view on Meta::CPAN

      this.decay = (response.responseText == this.lastText ?
        this.decay * this.options.decay : 1);

      this.lastText = response.responseText;
    }
    this.timer = this.onTimerEvent.bind(this).delay(this.decay * this.frequency);
  },

  onTimerEvent: function() {
    this.updater = new Ajax.Updater(this.container, this.url, this.options);
  }

prototype.js  view on Meta::CPAN

    element = $(element);
    if (content && content.toElement) content = content.toElement();
    if (Object.isElement(content)) return element.update().insert(content);
    content = Object.toHTML(content);
    element.innerHTML = content.stripScripts();
    content.evalScripts.bind(content).defer();
    return element;
  },

  replace: function(element, content) {
    element = $(element);
    if (content && content.toElement) content = content.toElement();
    else if (!Object.isElement(content)) {
      content = Object.toHTML(content);
      var range = element.ownerDocument.createRange();
      range.selectNode(element);
      content.evalScripts.bind(content).defer();
      content = range.createContextualFragment(content.stripScripts());
    }
    element.parentNode.replaceChild(content, element);
    return element;
  },

prototype.js  view on Meta::CPAN


      range = element.ownerDocument.createRange();
      t.initializeRange(element, range);
      t.insert(element, range.createContextualFragment(content.stripScripts()));

      content.evalScripts.bind(content).defer();
    }

    return element;
  },

prototype.js  view on Meta::CPAN

        if (position == 'top' || position == 'after') fragments.reverse();
        fragments.each(pos.insert.curry(element));
      }
      else element.insertAdjacentHTML(pos.adjacency, content.stripScripts());

      content.evalScripts.bind(content).defer();
    }

    return element;
  };
}

prototype.js  view on Meta::CPAN

      Element._getContentFromAnonymousElement(tagName, content.stripScripts())
        .each(function(node) { element.appendChild(node) });
    }
    else element.innerHTML = content.stripScripts();

    content.evalScripts.bind(content).defer();
    return element;
  };
}

if (document.createElement('div').outerHTML) {

prototype.js  view on Meta::CPAN

      else
        fragments.each(function(node) { parent.appendChild(node) });
    }
    else element.outerHTML = content.stripScripts();

    content.evalScripts.bind(content).defer();
    return element;
  };
}

Element._returnOffset = function(l, t) {

prototype.js  view on Meta::CPAN

  registerCallback: function(element) {
    if (element.type) {
      switch (element.type.toLowerCase()) {
        case 'checkbox':
        case 'radio':
          Event.observe(element, 'click', this.onElementEvent.bind(this));
          break;
        default:
          Event.observe(element, 'change', this.onElementEvent.bind(this));
          break;
      }
    }
  }
});

 view all matches for this distribution


Alien-QtSmoke

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

use File::Spec;
use ExtUtils::MakeMaker;

my $CWD = Cwd::cwd(); 

sub fetch_kdebindings {
    my $version = Alien::QtSmoke->version();

    my $downloadDir = File::Spec->catdir( $CWD, 'src' );

    my @mirrors = (

Makefile.PL  view on Meta::CPAN

        'ftp://kde.mirrors.tds.net/pub',
        'ftp://ftp.gtlib.cc.gatech.edu/pub',
    );

    foreach my $url ( @mirrors ) {
        $url .= "/kde/stable/$version/src/kdebindings-$version.tar.bz2";

        print "Attempting to download kdebindings source package\n";
        print "from $url\n";
        my $ff = File::Fetch->new( uri => $url ) or next;
        my $loc = $ff->fetch( to => $downloadDir ) or next;

        next if( !$loc || $ff->error() );

        print "Successfully downloaded kdebindings source.\n";
        return $loc;
    }

    die 'Unable to fetch kdebinding source.';
}

sub extract_kdebindings {
    my ( $src ) = @_;
    my $srcDir = File::Spec->catdir( $CWD, 'src' );
    chdir $srcDir;
    system "tar -xf $src";
    if ( ($? >> 8) > 0 ) {
        die "Unable to extract sources: $!\n";
    }
}

sub build_kdebindings {
    my $version = Alien::QtSmoke->version();
    my $prefix = Alien::QtSmoke->prefix();
    my $srcDir = File::Spec->catdir( $CWD, 'src', "kdebindings-$version" );
    my $buildDir = File::Spec->catdir( $srcDir, 'build' );
    my $qtSmokeBuildDir = File::Spec->catdir( $buildDir, 'smoke', 'qt' );

    File::Path::mkpath( $buildDir );
    chdir $buildDir;

Makefile.PL  view on Meta::CPAN

        die "Installing QtSmoke failed while running make install: $!\n";
    }
}

sub main {
    my $src = fetch_kdebindings();
    extract_kdebindings( $src );
    chdir $CWD;
    build_kdebindings();

    chdir $CWD;
    WriteMakefile(
        NAME => 'Alien::QtSmoke',
        VERSION_FROM => 'lib/Alien/QtSmoke.pm',

 view all matches for this distribution


Alien-ROOT

 view release on metacpan or  search on metacpan

inc/inc_Module-Build/Module/Build.pm  view on Meta::CPAN

1;

__END__

=for :stopwords
bindoc binhtml destdir distcheck distclean distdir distmeta distsign disttest
fakeinstall html installdirs installsitebin installsitescript installvendorbin
installvendorscript libdoc libhtml pardist ppd ppmdist realclean skipcheck
testall testcover testdb testpod testpodcoverage versioninstall

=head1 NAME

inc/inc_Module-Build/Module/Build.pm  view on Meta::CPAN


[version 0.20]

This will generate documentation (e.g. Unix man pages and HTML
documents) for any installable items under B<blib/> that
contain POD.  If there are no C<bindoc> or C<libdoc> installation
targets defined (as will be the case on systems that don't support
Unix manpages) no action is taken for manpages.  If there are no
C<binhtml> or C<libhtml> installation targets defined no action is
taken for HTML documents.

inc/inc_Module-Build/Module/Build.pm  view on Meta::CPAN


This will generate man pages for any binary or library files under
B<blib/> that contain POD.  The man pages will only be installed if the
install paths can be determined from values in C<Config.pm>.  You can
also supply or override install paths by specifying there values on
the command line with the C<bindoc> and C<libdoc> installation
targets.

=item pardist

[version 0.2806]

inc/inc_Module-Build/Module/Build.pm  view on Meta::CPAN


"Architecture-dependent" executable programs, i.e. compiled C code or
something.  Pretty rare to see this in a perl distribution, but it
happens.

=item bindoc

Documentation for the stuff in C<script> and C<bin>.  Usually
generated from the POD in those files.  Under Unix, these are manual
pages belonging to the 'man1' category.

inc/inc_Module-Build/Module/Build.pm  view on Meta::CPAN

generated from the POD in F<.pm> files.  Under Unix, these are manual
pages belonging to the 'man3' category.

=item binhtml

This is the same as C<bindoc> above, but applies to HTML documents.

=item libhtml

This is the same as C<libdoc> above, but applies to HTML documents.

inc/inc_Module-Build/Module/Build.pm  view on Meta::CPAN


  lib     => installprivlib  installsitelib      installvendorlib
  arch    => installarchlib  installsitearch     installvendorarch
  script  => installscript   installsitescript   installvendorscript
  bin     => installbin      installsitebin      installvendorbin
  bindoc  => installman1dir  installsiteman1dir  installvendorman1dir
  libdoc  => installman3dir  installsiteman3dir  installvendorman3dir
  binhtml => installhtml1dir installsitehtml1dir installvendorhtml1dir [*]
  libhtml => installhtml3dir installsitehtml3dir installvendorhtml3dir [*]

  * Under some OS (eg. MSWin32) the destination for HTML documents is

inc/inc_Module-Build/Module/Build.pm  view on Meta::CPAN


  lib     => /home/ken/lib/perl5
  arch    => /home/ken/lib/perl5/i386-linux
  script  => /home/ken/bin
  bin     => /home/ken/bin
  bindoc  => /home/ken/man/man1
  libdoc  => /home/ken/man/man3
  binhtml => /home/ken/html
  libhtml => /home/ken/html

Note that this is I<different> from how C<MakeMaker>'s C<PREFIX>

 view all matches for this distribution


Alien-RRDtool

 view release on metacpan or  search on metacpan

inc/MyBuilder.pm  view on Meta::CPAN

    my($self, @args) = @_;

    my $prefix    = $CWD . '/' . $self->notes('installdir');
    mkpath($prefix);

    my $bindir = $self->install_destination('bin');
    {
        local $CWD = $self->notes('name');

        local $ENV{PERL} = $self->perl;
        local $ENV{CC}   = $ENV{CC} || $self->maybe_ccache();

inc/MyBuilder.pm  view on Meta::CPAN

        local $ENV{PKG_CONFIG_PATH} = join(':', (split /:/, $ENV{PKG_CONFIG_PATH} || ''), @pkg_config_path);
        xsystem(
            './configure',

            "--prefix=$prefix",
            "--bindir=$bindir",
            "--enable-perl-site-install",

            "--disable-tcl",
            "--disable-rrdcgi",
            "--disable-perl", # install by myself

inc/MyBuilder.pm  view on Meta::CPAN

        join ' ', (map { "-L$_" } @libdirs),  $libs;
    };

    my $rpath = Cwd::abs_path($self->notes('name') . '/src/.libs') or die;

    $self->perl_bindings(sub {
        xsystem($self->perl,
            'Makefile.PL',
            "LIBS=$libs",
            "RPATH=$rpath");
        xsystem($Config{make});

inc/MyBuilder.pm  view on Meta::CPAN

sub ACTION_test {
    my($self, @args) = @_;

    $self->ACTION_code();

    $self->perl_bindings(sub {
        xsystem($Config{make}, 'test');
    });

    $self->SUPER::ACTION_test(@args);
}


sub ACTION_install {
    my($self, @args) = @_;

    $self->perl_bindings(sub {
        xsystem($Config{make}, 'install');
    });

    $self->SUPER::ACTION_install(@args);
}

inc/MyBuilder.pm  view on Meta::CPAN

    # work around Module::Build's bug that removing symlinks might fail
    unlink('rrdtool');
    $self->SUPER::ACTION_clean(@args);
}

sub perl_bindings {
    my($self, $block) = @_;
    for my $path(
            $self->binding_dir('perl-shared'),
            $self->binding_dir('perl-piped')) {

        local $CWD = $path;
        print "In $path:\n";

        $block->();
    }
    return;
}


sub binding_dir {
    my($self, $name) = @_;

    return $self->notes('name') . '/bindings/' . $name;
}

sub maybe_ccache {
    my $cc = $Config{cc};

 view all matches for this distribution


Alien-Role-Dino

 view release on metacpan or  search on metacpan

corpus/autoheck-libpalindrome/Makefile.in  view on Meta::CPAN

am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@

corpus/autoheck-libpalindrome/Makefile.in  view on Meta::CPAN

oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@

 view all matches for this distribution


Alien-SDL

 view release on metacpan or  search on metacpan

patches/SDL-1.2.14-configure  view on Meta::CPAN

sharedstatedir
sysconfdir
datadir
datarootdir
libexecdir
sbindir
bindir
program_transform_name
prefix
exec_prefix
PACKAGE_URL
PACKAGE_BUGREPORT

patches/SDL-1.2.14-configure  view on Meta::CPAN

# These are left unexpanded so users can "make install exec_prefix=/foo"
# and all the variables that are supposed to be based on exec_prefix
# by default will actually change.
# Use braces instead of parens because sh, perl, etc. also accept them.
# (The list follows the same order as the GNU Coding Standards.)
bindir='${exec_prefix}/bin'
sbindir='${exec_prefix}/sbin'
libexecdir='${exec_prefix}/libexec'
datarootdir='${prefix}/share'
datadir='${datarootdir}'
sysconfdir='${prefix}/etc'
sharedstatedir='${prefix}/com'

patches/SDL-1.2.14-configure  view on Meta::CPAN


  case $ac_dashdash$ac_option in
  --)
    ac_dashdash=yes ;;

  -bindir | --bindir | --bindi | --bind | --bin | --bi)
    ac_prev=bindir ;;
  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
    bindir=$ac_optarg ;;

  -build | --build | --buil | --bui | --bu)
    ac_prev=build_alias ;;
  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
    build_alias=$ac_optarg ;;

patches/SDL-1.2.14-configure  view on Meta::CPAN


  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  | -silent | --silent | --silen | --sile | --sil)
    silent=yes ;;

  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
    ac_prev=sbindir ;;
  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
  | --sbi=* | --sb=*)
    sbindir=$ac_optarg ;;

  -sharedstatedir | --sharedstatedir | --sharedstatedi \
  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
  | --sharedst | --shareds | --shared | --share | --shar \
  | --sha | --sh)

patches/SDL-1.2.14-configure  view on Meta::CPAN

    *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
  esac
fi

# Check all directory arguments for consistency.
for ac_var in	exec_prefix prefix bindir sbindir libexecdir datarootdir \
		datadir sysconfdir sharedstatedir localstatedir includedir \
		oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
		libdir localedir mandir
do
  eval ac_val=\$$ac_var

patches/SDL-1.2.14-configure  view on Meta::CPAN

for instance \`--prefix=\$HOME'.

For better control, use the options below.

Fine tuning of the installation directories:
  --bindir=DIR            user executables [EPREFIX/bin]
  --sbindir=DIR           system admin executables [EPREFIX/sbin]
  --libexecdir=DIR        program executables [EPREFIX/libexec]
  --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
  --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
  --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
  --libdir=DIR            object code libraries [EPREFIX/lib]

 view all matches for this distribution


Alien-SFML

 view release on metacpan or  search on metacpan

lib/Alien/SFML.pm  view on Meta::CPAN


https://github.com/jakeanq/perl-sfml/

http://www.sfml-dev.org/

Note that I do not maintain SFML itself, only Alien::SFML and the XS/perl bindings
for it, under the SFML module.

=head1 COPYRIGHT

 ############################

 view all matches for this distribution


Alien-SVN

 view release on metacpan or  search on metacpan

inc/My/SVN/Builder.pm  view on Meta::CPAN

    chdir 'src/subversion' or die $!;
}

sub _chdir_to_native {
    _chdir_to_svn;
    chdir "subversion/bindings/swig/perl/native" or die $!;
}

sub _chdir_back {
    chdir $Orig_CWD;
}


sub _svn_provides {
    my $class = shift;
    
    my @pms = <src/subversion/subversion/bindings/swig/perl/native/*.pm>;

    my %provides;
    for my $pm (@pms) {
        my $module = 'SVN::' . basename($pm, ".pm");

 view all matches for this distribution


Alien-SmokeQt

 view release on metacpan or  search on metacpan

AUTHORS  view on Meta::CPAN

DCOP C Bindings: - DCOP protocol and C++ implementation by
                    Matthias Ettrich <ettrich@kde.org>
                    Preston Brown <pbrown@kde.org>
                    Waldo Bastian <bastian@kde.org>
                 - C bindings by Simon Hausmann <simon@kde.org>
                   port to GtkObject by Lars Knoll <knoll@kde.org>

 view all matches for this distribution


Alien-SwaggerUI

 view release on metacpan or  search on metacpan

LICENSE  view on Meta::CPAN

      "Derivative Works" shall mean any work, whether in Source or Object
      form, that is based on (or derived from) the Work and for which the
      editorial revisions, annotations, elaborations, or other modifications
      represent, as a whole, an original work of authorship. For the purposes
      of this License, Derivative Works shall not include works that remain
      separable from, or merely link (or bind by name) to the interfaces of,
      the Work and Derivative Works thereof.

      "Contribution" shall mean any work of authorship, including
      the original version of the Work and any modifications or additions
      to that Work or Derivative Works thereof, that is intentionally

 view all matches for this distribution


Alien-Tidyp

 view release on metacpan or  search on metacpan

lib/Alien/Tidyp.pm  view on Meta::CPAN


Version 1.4.7 of Alien::Tidyp uses I<tidyp> sources v1.04.

=head1 SYNOPSIS

B<IMPORTANT:> This module is not a perl binding for I<tidyp> library; it is just a helper module.
The real perl binding is implemented by e.g L<HTML::Tidy|HTML::Tidy> module, which is able to
use Alien::Tidyp to locate I<tidyp> library on your system (or build it from source codes).

Alien::Tidyp tries (in given order) during its installation:

=over

 view all matches for this distribution


Alien-TinyCC

 view release on metacpan or  search on metacpan

lib/Alien/TinyCC.pm  view on Meta::CPAN

gives the full path to the directory containing F<libtcc.dll> or F<libtcc.a>

=back

If you want to link against F<libtcc>, you will need to include C<Alien::TinyCC>
in your F<.pm> file that loads your XS bindings, to ensure that the
C<PATH> or C<LD_LIBRARY_PATH> is properly set. Then, in your F<Build.PL>
file, you can use

=over

lib/Alien/TinyCC.pm  view on Meta::CPAN


David Mertens (dcmertens.perl@gmail.com)

=head1 BUGS

Please report any bugs or feature requests for the Alien bindings at the
project's main github page:
L<http://github.com/run4flat/Alien-TinyCC/issues>.

=head1 SUPPORT

 view all matches for this distribution


Alien-TinyCCx

 view release on metacpan or  search on metacpan

lib/Alien/TinyCCx.pm  view on Meta::CPAN

gives the full path to the directory containing F<libtcc.dll> or F<libtcc.a>

=back

If you want to link against F<libtcc>, you will need to include C<Alien::TinyCC>
in your F<.pm> file that loads your XS bindings, to ensure that the
C<PATH> or C<LD_LIBRARY_PATH> is properly set. Then, in your F<Build.PL>
file, you can use

=over

lib/Alien/TinyCCx.pm  view on Meta::CPAN


David Mertens (dcmertens.perl@gmail.com)

=head1 BUGS

Please report any bugs or feature requests for the Alien bindings at the
project's main github page:
L<http://github.com/run4flat/Alien-TinyCCx/issues>.

=head1 SUPPORT

 view all matches for this distribution


Alien-UDUNITS2

 view release on metacpan or  search on metacpan

t/inline.t  view on Meta::CPAN


	plan tests => 1;


	Inline->import( with => qw(Alien::UDUNITS2) );
	Inline->bind( C => q{
		double convert_inch_to_metre(const char* path_to_xml, double inch_value) {

			ut_system* sys = ut_read_xml(path_to_xml);

			ut_unit* from_in_unit = ut_get_unit_by_name(sys, "inch" );

 view all matches for this distribution


Alien-V8

 view release on metacpan or  search on metacpan

inc/inc_Module-Build/Module/Build.pm  view on Meta::CPAN

1;

__END__

=for :stopwords
bindoc binhtml destdir distcheck distclean distdir distmeta distsign disttest
fakeinstall html installdirs installsitebin installsitescript installvendorbin
installvendorscript libdoc libhtml pardist ppd ppmdist realclean skipcheck
testall testcover testdb testpod testpodcoverage versioninstall

=head1 NAME

inc/inc_Module-Build/Module/Build.pm  view on Meta::CPAN


[version 0.20]

This will generate documentation (e.g. Unix man pages and HTML
documents) for any installable items under B<blib/> that
contain POD.  If there are no C<bindoc> or C<libdoc> installation
targets defined (as will be the case on systems that don't support
Unix manpages) no action is taken for manpages.  If there are no
C<binhtml> or C<libhtml> installation targets defined no action is
taken for HTML documents.

inc/inc_Module-Build/Module/Build.pm  view on Meta::CPAN


This will generate man pages for any binary or library files under
B<blib/> that contain POD.  The man pages will only be installed if the
install paths can be determined from values in C<Config.pm>.  You can
also supply or override install paths by specifying there values on
the command line with the C<bindoc> and C<libdoc> installation
targets.

=item pardist

[version 0.2806]

inc/inc_Module-Build/Module/Build.pm  view on Meta::CPAN


"Architecture-dependent" executable programs, i.e. compiled C code or
something.  Pretty rare to see this in a perl distribution, but it
happens.

=item bindoc

Documentation for the stuff in C<script> and C<bin>.  Usually
generated from the POD in those files.  Under Unix, these are manual
pages belonging to the 'man1' category.

inc/inc_Module-Build/Module/Build.pm  view on Meta::CPAN

generated from the POD in F<.pm> files.  Under Unix, these are manual
pages belonging to the 'man3' category.

=item binhtml

This is the same as C<bindoc> above, but applies to HTML documents.

=item libhtml

This is the same as C<bindoc> above, but applies to HTML documents.

=back

Four other parameters let you control various aspects of how
installation paths are determined:

inc/inc_Module-Build/Module/Build.pm  view on Meta::CPAN


  lib     => installprivlib  installsitelib      installvendorlib
  arch    => installarchlib  installsitearch     installvendorarch
  script  => installscript   installsitebin      installvendorbin
  bin     => installbin      installsitebin      installvendorbin
  bindoc  => installman1dir  installsiteman1dir  installvendorman1dir
  libdoc  => installman3dir  installsiteman3dir  installvendorman3dir
  binhtml => installhtml1dir installsitehtml1dir installvendorhtml1dir [*]
  libhtml => installhtml3dir installsitehtml3dir installvendorhtml3dir [*]

  * Under some OS (eg. MSWin32) the destination for HTML documents is

inc/inc_Module-Build/Module/Build.pm  view on Meta::CPAN


  lib     => /home/ken/lib/perl5
  arch    => /home/ken/lib/perl5/i386-linux
  script  => /home/ken/bin
  bin     => /home/ken/bin
  bindoc  => /home/ken/man/man1
  libdoc  => /home/ken/man/man3
  binhtml => /home/ken/html
  libhtml => /home/ken/html

Note that this is I<different> from how C<MakeMaker>'s C<PREFIX>

 view all matches for this distribution


Alien-Web-ExtJS-V3

 view release on metacpan or  search on metacpan

MANIFEST  view on Meta::CPAN

share/examples/grid-filtering/grid-filter.json
share/examples/grid-filtering/grid-filter.php
share/examples/grid/ColumnHeaderGroup.html
share/examples/grid/array-grid.html
share/examples/grid/array-grid.js
share/examples/grid/binding-with-classes.html
share/examples/grid/binding-with-classes.js
share/examples/grid/binding.html
share/examples/grid/binding.js
share/examples/grid/buffer.html
share/examples/grid/buffer.js
share/examples/grid/column-header-group.js
share/examples/grid/details.gif
share/examples/grid/edit-grid.html

MANIFEST  view on Meta::CPAN

share/examples/shared/screens/form-composite.png
share/examples/shared/screens/form-custom-access.gif
share/examples/shared/screens/form-custom.gif
share/examples/shared/screens/form-dynamic.gif
share/examples/shared/screens/form-file-upload.gif
share/examples/shared/screens/form-grid-binding-access.gif
share/examples/shared/screens/form-grid-binding.gif
share/examples/shared/screens/form-multiselect.gif
share/examples/shared/screens/form-slider.png
share/examples/shared/screens/form-spinner.gif
share/examples/shared/screens/form-vbox.gif
share/examples/shared/screens/form-xml.gif
share/examples/shared/screens/forum.gif
share/examples/shared/screens/gmap-panel.gif
share/examples/shared/screens/grid-array.gif
share/examples/shared/screens/grid-buffer.gif
share/examples/shared/screens/grid-columngrouping.gif
share/examples/shared/screens/grid-data-binding.gif
share/examples/shared/screens/grid-edit.gif
share/examples/shared/screens/grid-filter.gif
share/examples/shared/screens/grid-from-markup.gif
share/examples/shared/screens/grid-grouping.gif
share/examples/shared/screens/grid-locking.gif

 view all matches for this distribution


Alien-Web-HalBrowser

 view release on metacpan or  search on metacpan

share/js/hal/browser.js  view on Meta::CPAN

    $container = opts.container || $('#browser');

    this.entryPoint = opts.entryPoint || '/';

    // TODO: don't hang currentDoc off namespace
    vent.bind('response', function(e) {
      window.HAL.currentDocument = e.resource || {};
    });

    vent.bind('location-go', _.bind(this.loadUrl, this));

    HAL.client = new HAL.Http.Client({ vent: vent });

    var browser = new HAL.Views.Browser({ vent: vent, entryPoint: this.entryPoint });
    browser.render()

 view all matches for this distribution


Alien-XGBoost

 view release on metacpan or  search on metacpan

LICENSE  view on Meta::CPAN

      "Derivative Works" shall mean any work, whether in Source or Object
      form, that is based on (or derived from) the Work and for which the
      editorial revisions, annotations, elaborations, or other modifications
      represent, as a whole, an original work of authorship. For the purposes
      of this License, Derivative Works shall not include works that remain
      separable from, or merely link (or bind by name) to the interfaces of,
      the Work and Derivative Works thereof.

      "Contribution" shall mean any work of authorship, including
      the original version of the Work and any modifications or additions
      to that Work or Derivative Works thereof, that is intentionally

 view all matches for this distribution


Alien-Xmake

 view release on metacpan or  search on metacpan

lib/Alien/Xrepo.pm  view on Meta::CPAN

        field $links       : param : reader;
        field $shared      : param : reader;
        field $static      : param : reader;
        field $version     : param : reader;
        field $libpath     : param : reader //= ();
        field $bindirs     : param : reader //= [];

        # Helper to find a specific header inside the includedirs
        method find_header ($filename) {
            for my $dir (@$includedirs) {
                my $p = path($dir)->child($filename);

lib/Alien/Xrepo.pm  view on Meta::CPAN

            # Fallback check: sometimes xrepo returns the generic include root,
            # and the file is in a subdir (e.g. GL/gl.h)
            warn "Header '$filename' not found in package include directories:\n" . join( "\n", @$includedirs ) . "\n";
            return;
        }
        method bin_dir {@$bindirs}

        method _data_printer ($ddp) {
            {   includedirs => $includedirs,
                libfiles    => $libfiles,
                license     => $license,

lib/Alien/Xrepo.pm  view on Meta::CPAN

                links       => $links,
                shared      => $shared,
                static      => $static,
                version     => $version,
                libpath     => $libpath,
                bindirs     => $bindirs
            }
        }
    }
    #
    method install ( $pkg_spec, $version //= (), %opts ) {

lib/Alien/Xrepo.pm  view on Meta::CPAN

    method _process_info ($info) {
        return () unless defined $info;
        my $libfiles = $info->{libfiles}    // [];
        my $incdirs  = $info->{includedirs} // [];
        my $linkdirs = $info->{linkdirs}    // [];
        my $bindirs  = $info->{bindirs}     // [];

        # 1. Validate that we actually got files back
        unless (@$libfiles) {
            $self->blah('[!] xrepo returned no library files. Package might be header-only.');

lib/Alien/Xrepo.pm  view on Meta::CPAN

                if ($imp_lib) {
                    my $lib_path = path($imp_lib);
                    my $basename = $lib_path->basename(qr/\.lib$/i);    # e.g., 'zlib' from 'zlib.lib'

                    # Construct list of potential directories to search
                    my @search_dirs = @$bindirs;

                    # Add standard relative paths: /path/to/lib/../bin
                    push @search_dirs, $lib_path->parent->parent->child('bin');
                    push @search_dirs, $lib_path->parent->sibling('bin');         # Some layouts differ

 view all matches for this distribution


Alien-Z3

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

0.002 - June 3rd 2019
  * Don't build z3 example code
  * Fix up small bits of the pod a little

0.001 - June 2nd 2019
  * Builds and installs to share dir.  No bindings.

 view all matches for this distribution


Alien-ZMQ-latest

 view release on metacpan or  search on metacpan

patch/4480.patch  view on Meta::CPAN

From 438d5d88392baffa6c2c5e0737d9de19d6686f0d Mon Sep 17 00:00:00 2001
From: Sergei Trofimovich <slyich@gmail.com>
Date: Tue, 20 Dec 2022 21:45:16 +0000
Subject: [PATCH] src/secure_allocator.hpp: define missing 'rebind' type

`gcc-13` added an assert to standard headers to make sure custom
allocators have intended implementation of rebind type instead
of inherited rebind. gcc change:
    https://gcc.gnu.org/git/?p=gcc.git;a=commitdiff;h=64c986b49558a7

Without the fix build fails on this week's `gcc-13` as:

    [ 92%] Building CXX object tests/CMakeFiles/test_security_curve.dir/test_security_curve.cpp.o

patch/4480.patch  view on Meta::CPAN

                     from /<<NIX>>/gcc-13.0.0/include/c++/13.0.0/bits/stl_uninitialized.h:64,
                     from /<<NIX>>/gcc-13.0.0/include/c++/13.0.0/memory:69,
                     from tests/../src/secure_allocator.hpp:42,
                     from tests/../src/curve_client_tools.hpp:49,
                     from tests/test_security_curve.cpp:53:
    /<<NIX>>/gcc-13.0.0/include/c++/13.0.0/bits/alloc_traits.h: In instantiation of 'struct std::__allocator_traits_base::__rebind<zmq::secure_allocator_t<unsigned char>, unsigned char, void>':
    /<<NIX>>/gcc-13.0.0/include/c++/13.0.0/bits/alloc_traits.h:94:11:   required by substitution of 'template<class _Alloc, class _Up> using std::__alloc_rebind = typename std::__allocator_traits_base::__rebind<_Alloc, _Up>::type [with _Alloc = zmq::...
    /<<NIX>>/gcc-13.0.0/include/c++/13.0.0/bits/alloc_traits.h:228:8:   required by substitution of 'template<class _Alloc> template<class _Tp> using std::allocator_traits< <template-parameter-1-1> >::rebind_alloc = std::__alloc_rebind<_Alloc, _Tp> [...
    /<<NIX>>/gcc-13.0.0/include/c++/13.0.0/ext/alloc_traits.h:126:65:   required from 'struct __gnu_cxx::__alloc_traits<zmq::secure_allocator_t<unsigned char>, unsigned char>::rebind<unsigned char>'
    /<<NIX>>/gcc-13.0.0/include/c++/13.0.0/bits/stl_vector.h:88:21:   required from 'struct std::_Vector_base<unsigned char, zmq::secure_allocator_t<unsigned char> >'
    /<<NIX>>/gcc-13.0.0/include/c++/13.0.0/bits/stl_vector.h:423:11:   required from 'class std::vector<unsigned char, zmq::secure_allocator_t<unsigned char> >'
    tests/../src/curve_client_tools.hpp:64:76:   required from here
    /<<NIX>>/gcc-13.0.0/include/c++/13.0.0/bits/alloc_traits.h:70:31: error: static assertion failed: allocator_traits<A>::rebind_alloc<A::value_type> must be A
       70 |                         _Tp>::value,
          |                               ^~~~~

The change adds trivial `rebind` definition with expected return type
and satisfies conversion requirements.
---
 src/secure_allocator.hpp | 11 +++++++++++
 1 file changed, 11 insertions(+)

patch/4480.patch  view on Meta::CPAN

+    template <class U>
+    secure_allocator_t (const secure_allocator_t<U> &) ZMQ_NOEXCEPT
+    {
+    }
+
+    template <class U> struct rebind
+    {
+        typedef secure_allocator_t<U> other;
+    };
 };
 #endif

 view all matches for this distribution


Alien-ZMQ

 view release on metacpan or  search on metacpan

lib/Alien/ZMQ.pm  view on Meta::CPAN


=over 4

=item * L<GitHub project|https://github.com/chazmcgarvey/p5-Alien-ZMQ>

=item * L<ZMQ> - good perl bindings for zeromq

=item * L<ZeroMQ|http://www.zeromq.org/> - official libzmq website

=back

 view all matches for this distribution


Alien-boost-mini

 view release on metacpan or  search on metacpan

MANIFEST  view on Meta::CPAN

include/boost/container/detail/block_slist.hpp
include/boost/container/detail/compare_functors.hpp
include/boost/container/detail/config_begin.hpp
include/boost/container/detail/config_end.hpp
include/boost/container/detail/construct_in_place.hpp
include/boost/container/detail/container_or_allocator_rebind.hpp
include/boost/container/detail/container_rebind.hpp
include/boost/container/detail/copy_move_algo.hpp
include/boost/container/detail/destroyers.hpp
include/boost/container/detail/dispatch_uses_allocator.hpp
include/boost/container/detail/dlmalloc.hpp
include/boost/container/detail/flat_tree.hpp

MANIFEST  view on Meta::CPAN

include/boost/intrusive/list_hook.hpp
include/boost/intrusive/options.hpp
include/boost/intrusive/pack_options.hpp
include/boost/intrusive/parent_from_member.hpp
include/boost/intrusive/pointer_plus_bits.hpp
include/boost/intrusive/pointer_rebind.hpp
include/boost/intrusive/pointer_traits.hpp
include/boost/intrusive/rbtree.hpp
include/boost/intrusive/rbtree_algorithms.hpp
include/boost/intrusive/set.hpp
include/boost/intrusive/set_hook.hpp

MANIFEST  view on Meta::CPAN

include/boost/mpl/aux_/common_name_wknd.hpp
include/boost/mpl/aux_/comparison_op.hpp
include/boost/mpl/aux_/config/adl.hpp
include/boost/mpl/aux_/config/arrays.hpp
include/boost/mpl/aux_/config/bcc.hpp
include/boost/mpl/aux_/config/bind.hpp
include/boost/mpl/aux_/config/compiler.hpp
include/boost/mpl/aux_/config/ctps.hpp
include/boost/mpl/aux_/config/dmc_ambiguous_ctps.hpp
include/boost/mpl/aux_/config/dtp.hpp
include/boost/mpl/aux_/config/eti.hpp

MANIFEST  view on Meta::CPAN

include/boost/mpl/aux_/fold_impl_body.hpp
include/boost/mpl/aux_/front_impl.hpp
include/boost/mpl/aux_/full_lambda.hpp
include/boost/mpl/aux_/has_apply.hpp
include/boost/mpl/aux_/has_begin.hpp
include/boost/mpl/aux_/has_rebind.hpp
include/boost/mpl/aux_/has_size.hpp
include/boost/mpl/aux_/has_tag.hpp
include/boost/mpl/aux_/has_type.hpp
include/boost/mpl/aux_/include_preprocessed.hpp
include/boost/mpl/aux_/inserter_algorithm.hpp

MANIFEST  view on Meta::CPAN

include/boost/mpl/aux_/preprocessed/bcc/and.hpp
include/boost/mpl/aux_/preprocessed/bcc/apply.hpp
include/boost/mpl/aux_/preprocessed/bcc/apply_fwd.hpp
include/boost/mpl/aux_/preprocessed/bcc/apply_wrap.hpp
include/boost/mpl/aux_/preprocessed/bcc/arg.hpp
include/boost/mpl/aux_/preprocessed/bcc/basic_bind.hpp
include/boost/mpl/aux_/preprocessed/bcc/bind.hpp
include/boost/mpl/aux_/preprocessed/bcc/bind_fwd.hpp
include/boost/mpl/aux_/preprocessed/bcc/bitand.hpp
include/boost/mpl/aux_/preprocessed/bcc/bitor.hpp
include/boost/mpl/aux_/preprocessed/bcc/bitxor.hpp
include/boost/mpl/aux_/preprocessed/bcc/deque.hpp
include/boost/mpl/aux_/preprocessed/bcc/divides.hpp

MANIFEST  view on Meta::CPAN

include/boost/mpl/aux_/preprocessed/bcc551/and.hpp
include/boost/mpl/aux_/preprocessed/bcc551/apply.hpp
include/boost/mpl/aux_/preprocessed/bcc551/apply_fwd.hpp
include/boost/mpl/aux_/preprocessed/bcc551/apply_wrap.hpp
include/boost/mpl/aux_/preprocessed/bcc551/arg.hpp
include/boost/mpl/aux_/preprocessed/bcc551/basic_bind.hpp
include/boost/mpl/aux_/preprocessed/bcc551/bind.hpp
include/boost/mpl/aux_/preprocessed/bcc551/bind_fwd.hpp
include/boost/mpl/aux_/preprocessed/bcc551/bitand.hpp
include/boost/mpl/aux_/preprocessed/bcc551/bitor.hpp
include/boost/mpl/aux_/preprocessed/bcc551/bitxor.hpp
include/boost/mpl/aux_/preprocessed/bcc551/deque.hpp
include/boost/mpl/aux_/preprocessed/bcc551/divides.hpp

MANIFEST  view on Meta::CPAN

include/boost/mpl/aux_/preprocessed/bcc_pre590/and.hpp
include/boost/mpl/aux_/preprocessed/bcc_pre590/apply.hpp
include/boost/mpl/aux_/preprocessed/bcc_pre590/apply_fwd.hpp
include/boost/mpl/aux_/preprocessed/bcc_pre590/apply_wrap.hpp
include/boost/mpl/aux_/preprocessed/bcc_pre590/arg.hpp
include/boost/mpl/aux_/preprocessed/bcc_pre590/basic_bind.hpp
include/boost/mpl/aux_/preprocessed/bcc_pre590/bind.hpp
include/boost/mpl/aux_/preprocessed/bcc_pre590/bind_fwd.hpp
include/boost/mpl/aux_/preprocessed/bcc_pre590/bitand.hpp
include/boost/mpl/aux_/preprocessed/bcc_pre590/bitor.hpp
include/boost/mpl/aux_/preprocessed/bcc_pre590/bitxor.hpp
include/boost/mpl/aux_/preprocessed/bcc_pre590/deque.hpp
include/boost/mpl/aux_/preprocessed/bcc_pre590/divides.hpp

MANIFEST  view on Meta::CPAN

include/boost/mpl/aux_/preprocessed/dmc/and.hpp
include/boost/mpl/aux_/preprocessed/dmc/apply.hpp
include/boost/mpl/aux_/preprocessed/dmc/apply_fwd.hpp
include/boost/mpl/aux_/preprocessed/dmc/apply_wrap.hpp
include/boost/mpl/aux_/preprocessed/dmc/arg.hpp
include/boost/mpl/aux_/preprocessed/dmc/basic_bind.hpp
include/boost/mpl/aux_/preprocessed/dmc/bind.hpp
include/boost/mpl/aux_/preprocessed/dmc/bind_fwd.hpp
include/boost/mpl/aux_/preprocessed/dmc/bitand.hpp
include/boost/mpl/aux_/preprocessed/dmc/bitor.hpp
include/boost/mpl/aux_/preprocessed/dmc/bitxor.hpp
include/boost/mpl/aux_/preprocessed/dmc/deque.hpp
include/boost/mpl/aux_/preprocessed/dmc/divides.hpp

MANIFEST  view on Meta::CPAN

include/boost/mpl/aux_/preprocessed/gcc/and.hpp
include/boost/mpl/aux_/preprocessed/gcc/apply.hpp
include/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp
include/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp
include/boost/mpl/aux_/preprocessed/gcc/arg.hpp
include/boost/mpl/aux_/preprocessed/gcc/basic_bind.hpp
include/boost/mpl/aux_/preprocessed/gcc/bind.hpp
include/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp
include/boost/mpl/aux_/preprocessed/gcc/bitand.hpp
include/boost/mpl/aux_/preprocessed/gcc/bitor.hpp
include/boost/mpl/aux_/preprocessed/gcc/bitxor.hpp
include/boost/mpl/aux_/preprocessed/gcc/deque.hpp
include/boost/mpl/aux_/preprocessed/gcc/divides.hpp

MANIFEST  view on Meta::CPAN

include/boost/mpl/aux_/preprocessed/msvc60/and.hpp
include/boost/mpl/aux_/preprocessed/msvc60/apply.hpp
include/boost/mpl/aux_/preprocessed/msvc60/apply_fwd.hpp
include/boost/mpl/aux_/preprocessed/msvc60/apply_wrap.hpp
include/boost/mpl/aux_/preprocessed/msvc60/arg.hpp
include/boost/mpl/aux_/preprocessed/msvc60/basic_bind.hpp
include/boost/mpl/aux_/preprocessed/msvc60/bind.hpp
include/boost/mpl/aux_/preprocessed/msvc60/bind_fwd.hpp
include/boost/mpl/aux_/preprocessed/msvc60/bitand.hpp
include/boost/mpl/aux_/preprocessed/msvc60/bitor.hpp
include/boost/mpl/aux_/preprocessed/msvc60/bitxor.hpp
include/boost/mpl/aux_/preprocessed/msvc60/deque.hpp
include/boost/mpl/aux_/preprocessed/msvc60/divides.hpp

MANIFEST  view on Meta::CPAN

include/boost/mpl/aux_/preprocessed/msvc70/and.hpp
include/boost/mpl/aux_/preprocessed/msvc70/apply.hpp
include/boost/mpl/aux_/preprocessed/msvc70/apply_fwd.hpp
include/boost/mpl/aux_/preprocessed/msvc70/apply_wrap.hpp
include/boost/mpl/aux_/preprocessed/msvc70/arg.hpp
include/boost/mpl/aux_/preprocessed/msvc70/basic_bind.hpp
include/boost/mpl/aux_/preprocessed/msvc70/bind.hpp
include/boost/mpl/aux_/preprocessed/msvc70/bind_fwd.hpp
include/boost/mpl/aux_/preprocessed/msvc70/bitand.hpp
include/boost/mpl/aux_/preprocessed/msvc70/bitor.hpp
include/boost/mpl/aux_/preprocessed/msvc70/bitxor.hpp
include/boost/mpl/aux_/preprocessed/msvc70/deque.hpp
include/boost/mpl/aux_/preprocessed/msvc70/divides.hpp

MANIFEST  view on Meta::CPAN

include/boost/mpl/aux_/preprocessed/mwcw/and.hpp
include/boost/mpl/aux_/preprocessed/mwcw/apply.hpp
include/boost/mpl/aux_/preprocessed/mwcw/apply_fwd.hpp
include/boost/mpl/aux_/preprocessed/mwcw/apply_wrap.hpp
include/boost/mpl/aux_/preprocessed/mwcw/arg.hpp
include/boost/mpl/aux_/preprocessed/mwcw/basic_bind.hpp
include/boost/mpl/aux_/preprocessed/mwcw/bind.hpp
include/boost/mpl/aux_/preprocessed/mwcw/bind_fwd.hpp
include/boost/mpl/aux_/preprocessed/mwcw/bitand.hpp
include/boost/mpl/aux_/preprocessed/mwcw/bitor.hpp
include/boost/mpl/aux_/preprocessed/mwcw/bitxor.hpp
include/boost/mpl/aux_/preprocessed/mwcw/deque.hpp
include/boost/mpl/aux_/preprocessed/mwcw/divides.hpp

MANIFEST  view on Meta::CPAN

include/boost/mpl/aux_/preprocessed/no_ctps/and.hpp
include/boost/mpl/aux_/preprocessed/no_ctps/apply.hpp
include/boost/mpl/aux_/preprocessed/no_ctps/apply_fwd.hpp
include/boost/mpl/aux_/preprocessed/no_ctps/apply_wrap.hpp
include/boost/mpl/aux_/preprocessed/no_ctps/arg.hpp
include/boost/mpl/aux_/preprocessed/no_ctps/basic_bind.hpp
include/boost/mpl/aux_/preprocessed/no_ctps/bind.hpp
include/boost/mpl/aux_/preprocessed/no_ctps/bind_fwd.hpp
include/boost/mpl/aux_/preprocessed/no_ctps/bitand.hpp
include/boost/mpl/aux_/preprocessed/no_ctps/bitor.hpp
include/boost/mpl/aux_/preprocessed/no_ctps/bitxor.hpp
include/boost/mpl/aux_/preprocessed/no_ctps/deque.hpp
include/boost/mpl/aux_/preprocessed/no_ctps/divides.hpp

MANIFEST  view on Meta::CPAN

include/boost/mpl/aux_/preprocessed/no_ttp/and.hpp
include/boost/mpl/aux_/preprocessed/no_ttp/apply.hpp
include/boost/mpl/aux_/preprocessed/no_ttp/apply_fwd.hpp
include/boost/mpl/aux_/preprocessed/no_ttp/apply_wrap.hpp
include/boost/mpl/aux_/preprocessed/no_ttp/arg.hpp
include/boost/mpl/aux_/preprocessed/no_ttp/basic_bind.hpp
include/boost/mpl/aux_/preprocessed/no_ttp/bind.hpp
include/boost/mpl/aux_/preprocessed/no_ttp/bind_fwd.hpp
include/boost/mpl/aux_/preprocessed/no_ttp/bitand.hpp
include/boost/mpl/aux_/preprocessed/no_ttp/bitor.hpp
include/boost/mpl/aux_/preprocessed/no_ttp/bitxor.hpp
include/boost/mpl/aux_/preprocessed/no_ttp/deque.hpp
include/boost/mpl/aux_/preprocessed/no_ttp/divides.hpp

MANIFEST  view on Meta::CPAN

include/boost/mpl/aux_/preprocessed/plain/and.hpp
include/boost/mpl/aux_/preprocessed/plain/apply.hpp
include/boost/mpl/aux_/preprocessed/plain/apply_fwd.hpp
include/boost/mpl/aux_/preprocessed/plain/apply_wrap.hpp
include/boost/mpl/aux_/preprocessed/plain/arg.hpp
include/boost/mpl/aux_/preprocessed/plain/basic_bind.hpp
include/boost/mpl/aux_/preprocessed/plain/bind.hpp
include/boost/mpl/aux_/preprocessed/plain/bind_fwd.hpp
include/boost/mpl/aux_/preprocessed/plain/bitand.hpp
include/boost/mpl/aux_/preprocessed/plain/bitor.hpp
include/boost/mpl/aux_/preprocessed/plain/bitxor.hpp
include/boost/mpl/aux_/preprocessed/plain/deque.hpp
include/boost/mpl/aux_/preprocessed/plain/divides.hpp

MANIFEST  view on Meta::CPAN

include/boost/mpl/back_fwd.hpp
include/boost/mpl/back_inserter.hpp
include/boost/mpl/begin.hpp
include/boost/mpl/begin_end.hpp
include/boost/mpl/begin_end_fwd.hpp
include/boost/mpl/bind.hpp
include/boost/mpl/bind_fwd.hpp
include/boost/mpl/bitand.hpp
include/boost/mpl/bitxor.hpp
include/boost/mpl/bool.hpp
include/boost/mpl/bool_fwd.hpp
include/boost/mpl/clear.hpp

 view all matches for this distribution


( run in 1.327 second using v1.01-cache-2.11-cpan-501a3233654 )