Fix linkage problem for multithreaded support.

PR:		48511
Submitted by:	Josh Tolbert <hemi@puresimplicity.net>
This commit is contained in:
Maho Nakata 2003-05-09 22:45:59 +00:00
parent 11151fb71e
commit afc2e47f94
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=80566

View file

@ -1,5 +1,5 @@
--- config.c.orig Fri Apr 25 03:10:17 2003 --- 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 @@ @@ -697,7 +697,7 @@
else if (mach == IA64Itan || MachIsUS(mach) || else if (mach == IA64Itan || MachIsUS(mach) ||
mach == Dec21164 || mach == Dec21264) mach == Dec21164 || mach == Dec21264)
@ -9,7 +9,18 @@
{ {
strcpy(goodgcc, files[i]); strcpy(goodgcc, files[i]);
return(0); 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 (!CmndOneLine(targ, "sysctl hw.model", ln))
{ {
if (strstr(ln, "433au")) mach = Dec21164; if (strstr(ln, "433au")) mach = Dec21164;
@ -20,7 +31,7 @@
} }
break; break;
case LAIA64: /* don't know */ case LAIA64: /* don't know */
@@ -2113,14 +2116,17 @@ @@ -2113,14 +2118,17 @@
if (!CmndOneLine(targ, "sysctl hw.model", ln)) if (!CmndOneLine(targ, "sysctl hw.model", ln))
{ {
if (strstr(ln, "Pentium Pro")) mach = IntPPRO; if (strstr(ln, "Pentium Pro")) mach = IntPPRO;
@ -38,7 +49,7 @@
} }
break; break;
default:; default:;
@@ -3124,6 +3130,9 @@ @@ -3124,6 +3132,9 @@
} }
if (USEWINF77) strcpy(F77, "$(BINdir)/winf77.exe"); if (USEWINF77) strcpy(F77, "$(BINdir)/winf77.exe");