diff options
author | ru <ru@FreeBSD.org> | 2004-12-21 09:00:26 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-12-21 09:00:26 +0000 |
commit | ba3655c74f170d85d1349f1e286aff27b58c9fc5 (patch) | |
tree | c770cc7ab20312f3a29a44816f43cb8965a9b44d /lib/Makefile | |
parent | cec60429bbb77a84c44199253f4a9d1a628fcc2a (diff) | |
download | FreeBSD-src-ba3655c74f170d85d1349f1e286aff27b58c9fc5.zip FreeBSD-src-ba3655c74f170d85d1349f1e286aff27b58c9fc5.tar.gz |
NOLIBC_R -> NO_LIBC_R
NOLIBPTHREAD -> NO_LIBPTHREAD
NOLIBTHR -> NO_LIBTHR
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Makefile b/lib/Makefile index 5f4fe5e..e1668ff 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -63,7 +63,7 @@ _libvgl= libvgl .endif .if ${MACHINE_ARCH} != "arm" && ${MACHINE_ARCH} != "ia64" && \ - ${MACHINE_ARCH} != "powerpc" && !defined(NOLIBC_R) + ${MACHINE_ARCH} != "powerpc" && !defined(NO_LIBC_R) _libc_r= libc_r .endif @@ -91,11 +91,11 @@ _libncp= libncp _libsmb= libsmb .endif -.if !defined(NOLIBPTHREAD) +.if !defined(NO_LIBPTHREAD) _libpthread= libpthread .endif -.if ${MACHINE_ARCH} != "arm" && !defined(NOLIBTHR) +.if ${MACHINE_ARCH} != "arm" && !defined(NO_LIBTHR) _libthr= libthr .endif |