Fixed some insertion sort errors (external ones only).

This commit is contained in:
Bruce Evans 2004-05-14 19:31:20 +00:00
parent 482b206bf5
commit f3e5ff4080
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=129236

View File

@ -42,14 +42,6 @@ _csu=csu/${MACHINE_ARCH}
_csu=csu
.endif
# libc_r is obsolete on ia64.
.if ${MACHINE_ARCH} != "ia64" && ${MACHINE_ARCH} != "powerpc" && \
${MACHINE_ARCH} != "arm"
.if !defined(NOLIBC_R)
_libc_r= libc_r
.endif
.endif
.if !defined(NOATM)
_libatm= libatm
_libngatm= libngatm
@ -59,17 +51,6 @@ _libngatm= libngatm
_libbind= libbind
.endif
.if !defined(NO_SENDMAIL)
_libmilter= libmilter
_libsm= libsm
_libsmdb= libsmdb
_libsmutil= libsmutil
.endif
.if !defined(NO_USB)
_libusbhid= libusbhid
.endif
.if ${MACHINE_ARCH} == "i386"
.if !defined(NO_BLUETOOTH)
_libbluetooth= libbluetooth
@ -81,11 +62,34 @@ _libsmb= libsmb
_libvgl= libvgl
.endif
# libc_r is obsolete on ia64.
.if ${MACHINE_ARCH} != "ia64" && ${MACHINE_ARCH} != "powerpc" && \
${MACHINE_ARCH} != "arm"
.if !defined(NOLIBC_R)
_libc_r= libc_r
.endif
.endif
.if ${MACHINE_ARCH} != "arm"
_libdisk= libdisk
.endif
.if ${MACHINE_ARCH} == "alpha"
_libio= libio
_compat= compat
.endif
.if !defined(NO_SENDMAIL)
_libmilter= libmilter
_libsm= libsm
_libsmdb= libsmdb
_libsmutil= libsmutil
.endif
.if !defined(NOCRYPT) && !defined(NO_OPENSSL)
_libmp= libmp
.endif
.if ${MACHINE_ARCH} == "amd64"
_libncp= libncp
_libsmb= libsmb
@ -103,12 +107,8 @@ _libthr= libthr
.endif
.endif
.if ${MACHINE_ARCH} != "arm"
_libdisk= libdisk
.endif
.if !defined(NOCRYPT) && !defined(NO_OPENSSL)
_libmp= libmp
.if !defined(NO_USB)
_libusbhid= libusbhid
.endif
.if !defined(NO_YP_LIBC)