diff options
author | ru <ru@FreeBSD.org> | 2006-04-12 19:52:34 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2006-04-12 19:52:34 +0000 |
commit | f6f87616ef92c3113d732cd9a7b256998db959a8 (patch) | |
tree | 9928f258046626967353f421bf8160f9ba49cc38 /sbin/ggate | |
parent | 6f911199b89f6612e33245e714025380f50b264d (diff) | |
download | FreeBSD-src-f6f87616ef92c3113d732cd9a7b256998db959a8.zip FreeBSD-src-f6f87616ef92c3113d732cd9a7b256998db959a8.tar.gz |
libc_r is no longer provided, and on alpha and sparc64, libthr
is (sym)linked to libpthread. Account for this change and
check for MK_LIBTHR instead of MK_LIBC_R where appropriate.
Diffstat (limited to 'sbin/ggate')
-rw-r--r-- | sbin/ggate/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/ggate/Makefile b/sbin/ggate/Makefile index 4dd5141..a089bf3 100644 --- a/sbin/ggate/Makefile +++ b/sbin/ggate/Makefile @@ -7,7 +7,7 @@ SUBDIR= ${_ggatec} \ ggatel .if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "sparc64" -.if ${MK_LIBC_R} != "no" +.if ${MK_LIBTHR} != "no" _ggatec= ggatec _ggated= ggated .endif |