diff options
author | Maho Nakata <maho@FreeBSD.org> | 2003-05-09 22:45:59 +0000 |
---|---|---|
committer | Maho Nakata <maho@FreeBSD.org> | 2003-05-09 22:45:59 +0000 |
commit | afc2e47f94e128a5f51f8dd6e86937ff93d180ad (patch) | |
tree | 7b55c266725aa955fd4b0272dc2d568363871e2b /math | |
parent | Fix build on 4.x, which doesn't have stdint.h. (diff) |
Fix linkage problem for multithreaded support.
PR: 48511
Submitted by: Josh Tolbert <hemi@puresimplicity.net>
Notes
Notes:
svn path=/head/; revision=80566
Diffstat (limited to 'math')
-rw-r--r-- | math/atlas/files/patch-config.c | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/math/atlas/files/patch-config.c b/math/atlas/files/patch-config.c index a5056bf654d9..08d9cdfdac15 100644 --- a/math/atlas/files/patch-config.c +++ b/math/atlas/files/patch-config.c @@ -1,5 +1,5 @@ --- config.c.orig Fri Apr 25 03:10:17 2003 -+++ config.c Mon May 5 07:40:36 2003 ++++ config.c Sat May 10 07:43:36 2003 @@ -697,7 +697,7 @@ else if (mach == IA64Itan || MachIsUS(mach) || mach == Dec21164 || mach == Dec21264) @@ -9,7 +9,18 @@ { strcpy(goodgcc, files[i]); return(0); -@@ -2104,7 +2104,10 @@ +@@ -1102,7 +1102,9 @@ + switch(OS) + { + case OSOSX: /* don't know answer */ +- case OSFreeBSD: /* don't know answer */ ++ case OSFreeBSD: ++ if (THREADS) strcpy(LIBS, "-pthread -lm"); ++ break; + case OSLinux: + break; + case OSSunOS: +@@ -2104,7 +2106,10 @@ if (!CmndOneLine(targ, "sysctl hw.model", ln)) { if (strstr(ln, "433au")) mach = Dec21164; @@ -20,7 +31,7 @@ } break; case LAIA64: /* don't know */ -@@ -2113,14 +2116,17 @@ +@@ -2113,14 +2118,17 @@ if (!CmndOneLine(targ, "sysctl hw.model", ln)) { if (strstr(ln, "Pentium Pro")) mach = IntPPRO; @@ -38,7 +49,7 @@ } break; default:; -@@ -3124,6 +3130,9 @@ +@@ -3124,6 +3132,9 @@ } if (USEWINF77) strcpy(F77, "$(BINdir)/winf77.exe"); |