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:
parent
fd62f5ca46
commit
c8cd8ab017
@ -40,9 +40,12 @@ _csu=csu/${MACHINE_ARCH}
|
|||||||
_csu=csu
|
_csu=csu
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
# libc_r is obsolete on ia64.
|
||||||
|
.if ${MACHINE_ARCH} != "ia64"
|
||||||
.if !defined(NOLIBC_R)
|
.if !defined(NOLIBC_R)
|
||||||
_libc_r= libc_r
|
_libc_r= libc_r
|
||||||
.endif
|
.endif
|
||||||
|
.endif
|
||||||
|
|
||||||
.if !defined(NO_BIND)
|
.if !defined(NO_BIND)
|
||||||
_libbind= libbind
|
_libbind= libbind
|
||||||
@ -69,6 +72,9 @@ _libthr= libthr
|
|||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if ${MACHINE_ARCH} == "ia64"
|
.if ${MACHINE_ARCH} == "ia64"
|
||||||
|
.if !defined(NOLIBPTHREAD)
|
||||||
|
_libpthread= libpthread
|
||||||
|
.endif
|
||||||
.if !defined(NOLIBTHR)
|
.if !defined(NOLIBTHR)
|
||||||
_libthr= libthr
|
_libthr= libthr
|
||||||
.endif
|
.endif
|
||||||
|
Loading…
Reference in New Issue
Block a user