summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Hamm <AHamm@civica.com.au>2002-06-08 03:11:24 +1000
committerJarkko Hietaniemi <jhi@iki.fi>2002-06-07 13:20:05 +0000
commit2d717ff651ec31c357435427efa03b424eda2701 (patch)
tree45278a0d55de43e90fbfba208262932e0fcc934e
parent93277c0ce83edfc9e5c7c1b4c9c0747bd6ad2cac (diff)
downloadperl-2d717ff651ec31c357435427efa03b424eda2701.tar.gz
Modification to Perl 5.6.1 source: ext/IO needs a hint
Message-ID: <3BA45F696FAAD3118A520090276AD99C0135BE03@sansydnt01.sanderson.net.au> p4raw-id: //depot/perl@17057
-rw-r--r--MANIFEST1
-rw-r--r--ext/IO/hints/sco.pl2
2 files changed, 3 insertions, 0 deletions
diff --git a/MANIFEST b/MANIFEST
index c4d357558a..eb54659d9b 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -420,6 +420,7 @@ ext/I18N/Langinfo/Langinfo.t I18N::Langinfo
ext/I18N/Langinfo/Langinfo.xs I18N::Langinfo
ext/I18N/Langinfo/Makefile.PL I18N::Langinfo
ext/IO/ChangeLog IO perl module change log
+ext/IO/hints/sco.pl Hint for IO for named architecture
ext/IO/IO.pm Top-level interface to IO::* classes
ext/IO/IO.xs IO extension external subroutines
ext/IO/lib/IO/Dir.pm IO directory reading package
diff --git a/ext/IO/hints/sco.pl b/ext/IO/hints/sco.pl
new file mode 100644
index 0000000000..ddcf1551d1
--- /dev/null
+++ b/ext/IO/hints/sco.pl
@@ -0,0 +1,2 @@
+# SCO OSR5 needs to link with libc.so again to have C<fsync> defined
+$self->{LIBS} = ['-lc'];