File: Config.pm

package info (click to toggle)
pdl 1%3A2.100-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,816 kB
  • sloc: perl: 22,587; ansic: 14,969; sh: 31; makefile: 30; sed: 6
file content (21 lines) | stat: -rw-r--r-- 446 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package PDL::Config;
use strict;
use warnings;

=head1 NAME

PDL::Config - vestige of configuration for PDL

=head1 DESCRIPTION

This was used for control of, and then storage of, various options
for building PDL. Many have been replaced with environment variables
- consult the various F<Makefile.PL>s in the GD, GSL, etc modules.

To see if a module is installed, use this boolean expression:

  eval { require PDL::Module::Name; 1 }

=cut

1;