summaryrefslogtreecommitdiff
path: root/graphics/rayshade
diff options
context:
space:
mode:
authorhubertf <hubertf>1999-10-04 21:25:12 +0000
committerhubertf <hubertf>1999-10-04 21:25:12 +0000
commit6cde1171faafe9f68ec5d3b4eb8dc275258f268a (patch)
treefa5dc6d4a7e8e1627d9e5633e231dd903be96fb8 /graphics/rayshade
parentbf880c5d5ac3354b94d0639f3c8f1bf16e2f9e0d (diff)
downloadpkgsrc-6cde1171faafe9f68ec5d3b4eb8dc275258f268a.tar.gz
This fixes an error that will only occur on machines fast enough to
compile through two directories in the "libray" directorie in 1 second: the upto-date check of libray.a will fail because it was already touched in this very second. Slowing things down here will help. (I seem to remember some hacking about this before, maybe in make(1), but I don't remember, and I won't start hacking make(1) now ;-)
Diffstat (limited to 'graphics/rayshade')
-rw-r--r--graphics/rayshade/files/patch-sum3
-rw-r--r--graphics/rayshade/patches/patch-ac22
2 files changed, 24 insertions, 1 deletions
diff --git a/graphics/rayshade/files/patch-sum b/graphics/rayshade/files/patch-sum
index 8814eac2c6e..e15ebc9e9f5 100644
--- a/graphics/rayshade/files/patch-sum
+++ b/graphics/rayshade/files/patch-sum
@@ -1,5 +1,6 @@
-$NetBSD: patch-sum,v 1.1 1999/07/09 13:51:11 agc Exp $
+$NetBSD: patch-sum,v 1.2 1999/10/04 21:25:12 hubertf Exp $
MD5 (patch-aa) = cd4751157ac4bb2b54b495186dd5c077
MD5 (patch-ab) = 02b3abe972f4c1ba883919e110c757e5
+MD5 (patch-ac) = 48d868f50cf881ebf9de3a56290db899
MD5 (patch-ba) = 88dfd4c97706d3176c1eb7b0090bc6f9
diff --git a/graphics/rayshade/patches/patch-ac b/graphics/rayshade/patches/patch-ac
new file mode 100644
index 00000000000..46d76f509a8
--- /dev/null
+++ b/graphics/rayshade/patches/patch-ac
@@ -0,0 +1,22 @@
+$NetBSD: patch-ac,v 1.1 1999/10/04 21:25:14 hubertf Exp $
+
+This fixes an error that will only occur on machines fast enough to
+compile through two directories in the "libray" directorie in 1
+second: the upto-date check of libray.a will fail because it was already
+touched in this very second. Slowing things down here will help.
+
+(I seem to remember some hacking about this before, maybe in make(1),
+but I don't remember, and I won't start hacking make(1) now ;-)
+
+
+--- libray/Makefile.orig Mon Oct 4 23:12:55 1999
++++ libray/Makefile Mon Oct 4 23:13:10 1999
+@@ -10,7 +10,7 @@
+
+ default:
+ for i in $(STUFF); do \
+- (cd $$i && $(MAKE)); \
++ (echo $$i ; cd $$i && $(MAKE) ; sleep 1); \
+ done
+
+ #