diff options
author | Ilya Zakharevich <ilya@math.ohio-state.edu> | 1996-12-25 16:05:42 -0500 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1996-12-28 06:22:00 +1200 |
commit | 3ed26a2c26e4f1468588c483e9e86eae4e74f24f (patch) | |
tree | 6c04d641f0ff800424ad8b5ba93d5945c3e1186c | |
parent | c87e1f5515866faad041c60b993657a88bf72eb4 (diff) | |
download | perl-3ed26a2c26e4f1468588c483e9e86eae4e74f24f.tar.gz |
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>
-rw-r--r-- | os2/os2ish.h | 1 | ||||
-rw-r--r-- | pod/perlxstut.pod | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/os2/os2ish.h b/os2/os2ish.h index cf945f36d3..b2e1f66c78 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 501a34845e..7371cb677d 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)'}, ); |