Fixed some insertion sort errors (external ones only).
This commit is contained in:
parent
482b206bf5
commit
f3e5ff4080
50
lib/Makefile
50
lib/Makefile
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user