From: Ilya Zakharevich Date: Wed, 25 Dec 1996 21:05:42 +0000 (-0500) Subject: Minor OS/2 fixes X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3ed26a2c26e4f1468588c483e9e86eae4e74f24f;p=p5sagit%2Fp5-mst-13.2.git Minor OS/2 fixes These are pretty minor (though fix one test-case and can make CPAN.pm behave better). p5p-msgid: <199612252105.QAA11890@monk.mps.ohio-state.edu> --- diff --git a/os2/os2ish.h b/os2/os2ish.h index cf945f3..b2e1f66 100644 --- a/os2/os2ish.h +++ b/os2/os2ish.h @@ -98,6 +98,7 @@ char *my_tmpnam (char *); #define tmpfile my_tmpfile #define tmpnam my_tmpnam +#define isatty _isterm /* * fwrite1() should be a routine with the same calling sequence as fwrite(), diff --git a/pod/perlxstut.pod b/pod/perlxstut.pod index 501a348..7371cb6 100644 --- a/pod/perlxstut.pod +++ b/pod/perlxstut.pod @@ -491,7 +491,7 @@ And finally create a file Makefile.PL that looks like this: $Verbose = 1; WriteMakefile( 'NAME' => 'Mytest2::mylib', - 'clean' => {'FILES' => 'libmylib.a'}, + 'clean' => {'FILES' => 'libmylib$(LIB_EXT)'}, );