summaryrefslogtreecommitdiff
path: root/math/scilab/patches/patch-ag
blob: 27a4c7997f14d75a81f12b85aaaacfd0016af68a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
$NetBSD: patch-ag,v 1.1 1998/08/25 12:53:08 agc Exp $

--- ./routines/sun/link_SYSV.c.orig	Wed Aug  5 14:54:57 1998
+++ ./routines/sun/link_SYSV.c	Sat Aug  8 13:25:44 1998
@@ -34,17 +34,21 @@
 #endif
 
-#ifdef linux 
+#if defined(linux) || defined(netbsd) || defined(freebsd)
 #include <unistd.h>
 #include <sys/wait.h>
-#endif 
+#endif
 
 #ifndef linux
 #ifndef hppa
+#ifndef netbsd
+#ifndef freebsd
 #if (defined(sun) && ! defined(SYSV)) 
 #else 
 #include <sys/mode.h>
-#endif 
 #endif
-#endif 
+#endif
+#endif
+#endif
+#endif
 
 #ifdef __alpha
@@ -261,8 +265,12 @@
        "/usr/bin/ld", "-shared", "-o", 0, 0  
 #else
+#if defined(netbsd) || defined(freebsd)
+	"/usr/bin/ld", "-Bshareable", "-o", 0, 0
+#else
 #ifdef hppa
        "/bin/ld", "-b", "-o", 0, 0
 #else
        "/bin/ld", "-shared", "-o", 0, 0  
+#endif
 #endif
 #endif