summaryrefslogtreecommitdiff
path: root/net/mpich2/files
diff options
context:
space:
mode:
Diffstat (limited to 'net/mpich2/files')
-rw-r--r--net/mpich2/files/patch-aa14
-rw-r--r--net/mpich2/files/patch-ab19
2 files changed, 0 insertions, 33 deletions
diff --git a/net/mpich2/files/patch-aa b/net/mpich2/files/patch-aa
deleted file mode 100644
index f529089ca956..000000000000
--- a/net/mpich2/files/patch-aa
+++ /dev/null
@@ -1,14 +0,0 @@
---- romio/adio/common/ad_fstype.c.orig Mon Jun 15 13:45:25 1998
-+++ romio/adio/common/ad_fstype.c Mon Oct 19 16:23:55 1998
-@@ -91,7 +91,11 @@
-
- if (err) *error_code = MPI_ERR_UNKNOWN;
- else {
-+#if (__FreeBSD_version>300004)
-+ if ( !strncmp("nfs",fsbuf.f_fstypename,3) ) *fstype = ADIO_NFS;
-+#else
- if (fsbuf.f_type == MOUNT_NFS) *fstype = ADIO_NFS;
-+#endif
- else *fstype = ADIO_UFS;
- *error_code = MPI_SUCCESS;
- }
diff --git a/net/mpich2/files/patch-ab b/net/mpich2/files/patch-ab
deleted file mode 100644
index b2cd75491a70..000000000000
--- a/net/mpich2/files/patch-ab
+++ /dev/null
@@ -1,19 +0,0 @@
---- util/mpiinstall.in.orig Mon Nov 29 20:48:06 1999
-+++ util/mpiinstall.in Sat Dec 25 07:57:38 1999
-@@ -886,12 +886,12 @@
- MkDir $mandir
- CopyFile $top_srcdir/man/mandesc $mandir
- # No files in man5 (was ADI routines)
-- for dir in man1 man3 man4 ; do
-- MkDir $mandir/$dir
-- for file in $top_srcdir/man/$dir/* ; do
-+ for manxdir in man1 man3 man4 ; do
-+ MkDir $mandir/$manxdir
-+ for file in $top_srcdir/man/$manxdir/* ; do
- # man5 in particular might be empty; be careful
- if [ -f "$file" -a -s "$file" ] ; then
-- CopyFile $file $mandir/$dir
-+ CopyFile $file $mandir/$manxdir
- fi
- done
- done