o disconnect libc_r from the build on ia64. The library is now

obsolete. The intend is to add glue to either libthr or
   libpthread to create the necessary compat links.
o  Hook libpthread to the build on ia64. This is slightly out of
   order, because the kernel still doesn't have all the support,
   but that's not a problem in this case.
This commit is contained in:
Marcel Moolenaar 2003-06-27 07:41:51 +00:00
parent fd62f5ca46
commit c8cd8ab017
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=116906

View file

@ -40,9 +40,12 @@ _csu=csu/${MACHINE_ARCH}
_csu=csu
.endif
# libc_r is obsolete on ia64.
.if ${MACHINE_ARCH} != "ia64"
.if !defined(NOLIBC_R)
_libc_r= libc_r
.endif
.endif
.if !defined(NO_BIND)
_libbind= libbind
@ -69,6 +72,9 @@ _libthr= libthr
.endif
.if ${MACHINE_ARCH} == "ia64"
.if !defined(NOLIBPTHREAD)
_libpthread= libpthread
.endif
.if !defined(NOLIBTHR)
_libthr= libthr
.endif