Safe.pm is actually not under ext/Safe
[p5sagit/p5-mst-13.2.git] / README
CommitLineData
a0bda3fb 1Perl is Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
a9a18363 22002, 2003, 2004, 2005, 2006, 2007 by Larry Wall and others.
3All rights reserved.
8d063cd8 4
8d063cd8 5
4bb101f2 6
a0bda3fb 7ABOUT PERL
8==========
a687059c 9
a0bda3fb 10Perl is a general-purpose programming language originally developed for
11text manipulation and now used for a wide range of tasks including
12system administration, web development, network programming, GUI
13development, and more.
8e07c86e 14
a0bda3fb 15The language is intended to be practical (easy to use, efficient,
16complete) rather than beautiful (tiny, elegant, minimal). Its major
17features are that it's easy to use, supports both procedural and
18object-oriented (OO) programming, has powerful built-in support for text
19processing, and has one of the world's most impressive collections of
20third-party modules.
d48672a2 21
a0bda3fb 22For an introduction to the language's features, see pod/perlintro.pod.
23
24There are also many Perl books available, covering a wide variety of topics,
25from various publishers. See pod/perlbook.pod for more information.
26
27
28INSTALLATION
29============
30
31If you're using a relatively modern operating system and want to
32install this version of Perl locally, run the following commands:
33
b6e5a715 34 ./Configure -des -Dprefix=$HOME/localperl
a0bda3fb 35 make test
36 make install
37
b6e5a715 38This will configure and compile perl for your platform, run the regression
39tests, and install perl in a subdirectory "localperl" of your home directory.
40
a0bda3fb 41If you run into any trouble whatsoever or you need to install a customized
42version of Perl, you should read the detailed instructions in the "INSTALL"
43file that came with this distribution. Additionally, there are a number of
44"README" files with hints and tips about building and using Perl on a wide
45variety of platforms, some more common than others.
46
47Once you have Perl installed, a wealth of documentation is available to you
48through the 'perldoc' tool. To get started, run this command:
49
50 perldoc perl
51
52
53IF YOU RUN INTO TROUBLE
54=======================
a687059c 55
a0bda3fb 56Perl is a large and complex system that's used for everything from
57knitting to rocket science. If you run into trouble, it's quite
58likely that someone else has already solved the problem you're
59facing. Once you've exhausted the documentation, please report bugs to us
60using the 'perlbug' tool. For more information about perlbug, either type
61'perldoc perlbug' or just 'perlbug' on a line by itself.
62
63While it was current when we made it available, Perl is constantly evolving
d0b6580b 64and there may be a more recent version that fixes bugs you've run into or
65adds new features that you might find useful.
a0bda3fb 66
67You can always find the latest version of perl on a CPAN (Comprehensive Perl
68Archive Network) site near you at http://www.cpan.org/src/
8d063cd8 69
a687059c 70
71Just a personal note: I want you to know that I create nice things like this
72because it pleases the Author of my story. If this bothers you, then your
73notion of Authorship needs some revision. But you can use perl anyway. :-)
74
75 The author.
a0bda3fb 76
77
78LICENSING
79=========
80
81This program is free software; you can redistribute it and/or modify
82it under the terms of either:
83
84 a) the GNU General Public License as published by the Free
85 Software Foundation; either version 1, or (at your option) any
86 later version, or
87
88 b) the "Artistic License" which comes with this Kit.
89
90This program is distributed in the hope that it will be useful,
91but WITHOUT ANY WARRANTY; without even the implied warranty of
92MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See either
93the GNU General Public License or the Artistic License for more details.
94
95You should have received a copy of the Artistic License with this
96Kit, in the file named "Artistic". If not, I'll be glad to provide one.
97
98You should also have received a copy of the GNU General Public License
99along with this program in the file named "Copying". If not, write to the
8d9043d1 100Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
101Boston, MA 02110-1301, USA or visit their web page on the internet at
a0bda3fb 102http://www.gnu.org/copyleft/gpl.html.
103
104For those of you that choose to use the GNU General Public License,
105my interpretation of the GNU General Public License is that no Perl
106script falls under the terms of the GPL unless you explicitly put
107said script under the terms of the GPL yourself. Furthermore, any
108object code linked with perl does not automatically fall under the
109terms of the GPL, provided such object code only adds definitions
110of subroutines and variables, and does not otherwise impair the
111resulting interpreter from executing any standard Perl script. I
112consider linking in C subroutines in this manner to be the moral
113equivalent of defining subroutines in the Perl language itself. You
114may sell such an object file as proprietary provided that you provide
115or offer to provide the Perl source, as specified by the GNU General
116Public License. (This is merely an alternate way of specifying input
117to the program.) You may also sell a binary produced by the dumping of
118a running Perl script that belongs to you, provided that you provide or
119offer to provide the Perl source as specified by the GPL. (The
120fact that a Perl interpreter and your code are in the same binary file
121is, in this case, a form of mere aggregation.) This is my interpretation
122of the GPL. If you still have concerns or difficulties understanding
123my intent, feel free to contact me. Of course, the Artistic License
124spells all this out for your protection, so you may prefer to use that.
125
126