dmtelf has asked for the wisdom of the Perl Monks concerning the following question:
These lines are from the install.txt file:
so I had a look at Makefile.pl ...# Preliminary steps for use with ActiveState's port of Perl 5.005: # ---------------------------------------------------------------- # # (For the Win32 platform) # # Edit the file "Makefile.PL" and remove all of the "#" characters # which currently comment out the attributes "ABSTRACT", "AUTHOR" # and "CAPI".
There's a funny control character there, a small square(!)What should it be? Is this an error in the makefile or...?# Look at the following line: # ($] >= 5.005 && $ eq 'MSWin32' && $Config{archname} =~ /-object\b +/i ?
# WriteMakefile( 'NAME' => 'Date::Calc', 'VERSION_FROM' => 'Calc.pm', 'OBJECT' => '$(O_FILES)', 'LIBS' => [''], # e.g., '-lm' 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING' 'INC' => '', # e.g., '-I/usr/include/other' # ($] >= 5.005 ? # ('ABSTRACT' => 'Gregorian calendar date calculations', # 'AUTHOR' => 'Steffen Beyer (sb@engelschall.com)') : ()) +, # ($] >= 5.005 && $ eq 'MSWin32' && $Config{archname} =~ /-object\b +/i ? # ('CAPI' => 'TRUE') : ()), 'dist' => { COMPRESS => "gzip -9", SUFFIX => "gz" } );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: Illegal char in Date::Calc makefile.pl file?
by t0mas (Priest) on Aug 10, 2000 at 14:24 UTC | |
by athomason (Curate) on Aug 10, 2000 at 20:22 UTC |