summaryrefslogtreecommitdiff
path: root/parallel/mpi-ch/patches/patch-au
diff options
context:
space:
mode:
authorjschauma <jschauma>2003-03-27 21:07:05 +0000
committerjschauma <jschauma>2003-03-27 21:07:05 +0000
commitfef4dba6de22c0c495ec0925fb9e1a5a143c7628 (patch)
tree4194a2bddf359663fe09318b6d0e83a20863ac2e /parallel/mpi-ch/patches/patch-au
parent78f15c3f82d52085b229dd21af5cc3d5f6411865 (diff)
downloadpkgsrc-fef4dba6de22c0c495ec0925fb9e1a5a143c7628.tar.gz
Update to latest version 1.2.5-1a (pkgversion 1.2.5.1.1)
From the packages README: Version 1.2.5 is primarily a bug-fix release. New features include Significantly better collective algorithms are available. Major changes for the globus2 device and the ch_nt device. Information on previous versions -------------------------------- Features new or improved in Version 1.2.4 included: SMP support has been inproved through the use of sched_yield. SMP Systems that are not oversubscribed can consider configuring with --disable-yeild. A number of bugs in the ch_p4, ch_p4mpd, and ch_shmem device hae been fixed. These could cause programs to hang or generate error messages. Features new or improved in Version 1.2.3 included: Bug fixes and improved-portability, particularly in the area of Linux and Mac OS X support. Other new features include better support for Intel compilers, particularly for IA64 Linux, better support for various Fortran compilers, and some fixes for rare race conditions in the ch_p4 device. The documentation on the ch_p4mpd device and the MPD system has been improved. Version 1.2.3 also includes all of the source for both the Unix and Windows versions. Windows users should still use the self-installing version available through the web page. The globus device now supports version 2 of Globus. Features new or improved in Version 1.2.2 included: There are a number of improvements to the ch_p4 device that improve both performance and reliability, particularly on Linux platforms. Significant upgrades have been made to the MPD system of daemons that provide fast startup of MPICH jobs, management of stdio, and a crude parallel debugger based on gdb.
Diffstat (limited to 'parallel/mpi-ch/patches/patch-au')
-rw-r--r--parallel/mpi-ch/patches/patch-au69
1 files changed, 69 insertions, 0 deletions
diff --git a/parallel/mpi-ch/patches/patch-au b/parallel/mpi-ch/patches/patch-au
new file mode 100644
index 00000000000..880a02128bc
--- /dev/null
+++ b/parallel/mpi-ch/patches/patch-au
@@ -0,0 +1,69 @@
+$NetBSD: patch-au,v 1.1 2003/03/27 21:07:06 jschauma Exp $
+
+--- examples/perftest/Makefile.in.orig Mon Jan 13 17:20:14 2003
++++ examples/perftest/Makefile.in Thu Mar 27 10:40:39 2003
+@@ -101,7 +101,7 @@
+ vectest_SOURCES = vectest.f
+ stress_SOURCES = stress.c daytime.c getopts.c
+ tcomm_SOURCES = tcomm.c mpe_seq.c getopts.c
+-copytest_SOURCES = copytest.c duff.c
++copytest_SOURCES = copytest.c
+
+ # Distribution modifications
+ EXTRA_DIST = config ${EXTRA_SCRIPTS}
+@@ -115,7 +115,7 @@
+ DEFS = @DEFS@ -I. -I$(srcdir) -I.
+ CPPFLAGS = @CPPFLAGS@
+ LDFLAGS = @LDFLAGS@
+-LIBS = @LIBS@
++LIBS = @LIBS@ -lm
+ tunepkt_SOURCES = tunepkt.c
+ tunepkt_OBJECTS = tunepkt.o
+ tunepkt_LDADD = $(LDADD)
+@@ -126,7 +126,7 @@
+ pktuse_LDADD = $(LDADD)
+ pktuse_DEPENDENCIES =
+ pktuse_LDFLAGS =
+-copytest_OBJECTS = copytest.o duff.o
++copytest_OBJECTS = copytest.o
+ copytest_LDADD = $(LDADD)
+ copytest_DEPENDENCIES =
+ copytest_LDFLAGS =
+@@ -260,12 +260,18 @@
+ install-binPROGRAMS: $(bin_PROGRAMS)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(bindir)
+- @list='$(bin_PROGRAMS)'; for p in $$list; do \
++ @list='$(bin_PROGRAMS) $(EXTRA_PROGRAMS)'; for p in $$list; do \
+ if test -f $$p; then \
+ echo " $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
+ $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
+ else :; fi; \
+ done
++ @list='$(EXTRA_SCRIPTS)'; for p in $$list; do \
++ if test -f $$p; then \
++ echo " $(INSTALL_SCRIPT) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
++ $(INSTALL_SCRIPT) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
++ else :; fi; \
++ done
+
+ uninstall-binPROGRAMS:
+ @$(NORMAL_UNINSTALL)
+@@ -326,7 +332,7 @@
+
+ mpptest: $(mpptest_OBJECTS) $(mpptest_DEPENDENCIES)
+ @rm -f mpptest
+- $(LINK) $(mpptest_LDFLAGS) $(mpptest_OBJECTS) $(mpptest_LDADD) $(LIBS)
++ $(LINK) $(mpptest_LDFLAGS) $(mpptest_OBJECTS) $(mpptest_LDADD) $(LIBS) -lm
+
+ goptest: $(goptest_OBJECTS) $(goptest_DEPENDENCIES)
+ @rm -f goptest
+@@ -440,7 +446,7 @@
+ install: install-am
+ uninstall-am: uninstall-binPROGRAMS
+ uninstall: uninstall-am
+-all-am: Makefile $(PROGRAMS) $(HEADERS) mpptestconf.h
++all-am: Makefile $(PROGRAMS) $(EXTRA_PROGRAMS) $(HEADERS) mpptestconf.h
+ all-redirect: all-am
+ install-strip:
+ $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install