"Fossies" - the Fresh Open Source Software Archive 
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Perl source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
1 use ExtUtils::MakeMaker;
2 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
3 # the contents of the Makefile that is written.
4 WriteMakefile(
5 'NAME' => 'Mail::Sendmail',
6 'VERSION_FROM' => 'Sendmail.pm', # finds $VERSION
7 'dist' => { COMPRESS=>"gzip", SUFFIX=>"gz" },
8 #Do these cause trouble to old versions of PPM ? Check!
9 # 'PREREQ_PM' => {
10 # 'Time::Local' => 0,
11 # 'Socket' => 0,
12 # 'Sys::Hostname' => 0
13 # },
14 ($] ge '5.005')
15 ? (
16 'AUTHOR' => 'Milivoj Ivkovic <mi _at_ alma.ch>',
17 'ABSTRACT' => 'Simple platform independent mailer',
18 ## how can I get the version MakeMaker found ?
19 # 'BINARY_LOCATION' => "http://alma.ch/perl/ppm/Mail-Sendmail-$VERSION-PPM.tar.gz",
20 'PPM_INSTALL_SCRIPT' => 'test.pl',
21 # add install exe! (PPM_INSTALL_EXEC ?)
22 )
23 : (),
24
25
26 );
27
28 print <<EOT
29 **********************************************************************
30
31 NOTE
32 ----
33
34 The test (test.pl) is a real test for this module: it sends an e-mail.
35
36 You may want to edit test.pl before running it (directly or through
37 make test), so the mail is sent to you. If you also leave my address,
38 the mail goes into a database from which I can get statistics.
39
40 Read the docs, and have fun...
41
42 **********************************************************************
43 EOT
44 ;