diff options
author | deischen <deischen@FreeBSD.org> | 2003-08-08 21:16:06 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2003-08-08 21:16:06 +0000 |
commit | 50c0d6cd4fe0a64b5749b86467c2428cb7133999 (patch) | |
tree | b3ec2075dc0f560df064179159acb2a91bfa21b1 | |
parent | 4bf1e96a1e7985d1c04548660983cfb27df99bd2 (diff) | |
download | FreeBSD-src-50c0d6cd4fe0a64b5749b86467c2428cb7133999.zip FreeBSD-src-50c0d6cd4fe0a64b5749b86467c2428cb7133999.tar.gz |
Since it builds and seems to work OK, add libpthread to the amd64 build.
-rw-r--r-- | lib/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index 44c1f6a..3e77e3f 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -82,6 +82,9 @@ _compat= compat .if ${MACHINE_ARCH} == "amd64" _libncp= libncp _libsmb= libsmb +.if !defined(NOLIBPTHREAD) +_libpthread= libpthread +.endif .endif .if ${MACHINE_ARCH} != "amd64" && ${MACHINE_ARCH} != "powerpc" |