summaryrefslogtreecommitdiff
path: root/lang/sr/patches/patch-at
diff options
context:
space:
mode:
authoris <is@pkgsrc.org>2005-02-25 15:54:58 +0000
committeris <is@pkgsrc.org>2005-02-25 15:54:58 +0000
commitb5c36df76f552e7ce887f892ba56555df4aaa3a6 (patch)
treed64a7ca23c0808be1e203863128a081aede8f89a /lang/sr/patches/patch-at
parentc28c96be32c86f3792c316330272b227651effd8 (diff)
downloadpkgsrc-b5c36df76f552e7ce887f892ba56555df4aaa3a6.tar.gz
This is the SR, a language for concurrent programming from the
University of Arizona, version 2.3.2. SR is described in "The SR Programming Language: Concurrency in Practice" by Gregory R. Andrews and Ronald A. Olsson (Benjamin/Cummings, 1993, ISBN 0-8053-0088-0).
Diffstat (limited to 'lang/sr/patches/patch-at')
-rw-r--r--lang/sr/patches/patch-at45
1 files changed, 45 insertions, 0 deletions
diff --git a/lang/sr/patches/patch-at b/lang/sr/patches/patch-at
new file mode 100644
index 00000000000..9303969ea83
--- /dev/null
+++ b/lang/sr/patches/patch-at
@@ -0,0 +1,45 @@
+$NetBSD: patch-at,v 1.1.1.1 2005/02/25 15:54:59 is Exp $
+
+--- csw/Makefile.orig 1999-07-30 07:01:50.000000000 +0200
++++ csw/Makefile
+@@ -1,6 +1,6 @@
+ ## Makefile for the SR context switch routines.
+
+-CFLAGS = -g
++CFLAGS = -O3
+ SHELL = /bin/sh
+
+ SRC = alpha.s ap3000.s bobcat.s encore.s i386.s m68k.s m88k.s mips.s \
+@@ -16,6 +16,8 @@ OKAY: cstest
+ cmp cstest.out cstest.stdout
+ echo "`date`: cstest passed" >OKAY
+
++_context_u.o: ; ar xv /usr/lib/libpthread.a _context_u.o
++pthread_md.o: ; ar xv /usr/lib/libpthread.a pthread_md.o
+
+ # cstest is the test program
+
+@@ -27,19 +29,15 @@ cstest: cstest.o asm.o
+ # csloop is a timing program, built only on request
+
+ csloop: csloop.o asm.o
+- . ../paths.sh; $(CC) -O -o csloop csloop.o asm.o $$LIBR $$LIBC
++ . ../paths.sh; $(CC) -g -o csloop csloop.o asm.o $$LIBR $$LIBC
+
+ csloop.o: csloop.c
+ $(CC) -O -c csloop.c
+
+
+-# asm.o holds the actual context switch code
+-
+-asm.o: asm.c ../arch.h $(SRC)
+- $(CC) $(CFLAGS) -E asm.c | \
+- sed -e '/^ *$$/d' -e '/^#/'d -e 's/ :/:/' >asm.s
+- as -o asm.o asm.s
+-
++asm.o: netbsd.c pthread_md.o _context_u.o
++ $(CC) $(CFLAGS) -c netbsd.c
++ $(LD) -r -o asm.o netbsd.o pthread_md.o _context_u.o
+
+
+ # miscellaneous utility targets