diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2004-12-21 09:00:26 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2004-12-21 09:00:26 +0000 |
| commit | f1f6253f4fb5a5822c0d75ecc6365523e6da42fd (patch) | |
| tree | c770cc7ab20312f3a29a44816f43cb8965a9b44d /lib | |
| parent | e653b48c80fb85b2a10372d664a4b55dbdc51dae (diff) | |
Notes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/Makefile | 6 | ||||
| -rw-r--r-- | lib/bind/config.mk | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/lib/Makefile b/lib/Makefile index 5f4fe5efdaca..e1668ff3c32c 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 diff --git a/lib/bind/config.mk b/lib/bind/config.mk index 1d9aacf37b5a..970400bc5e99 100644 --- a/lib/bind/config.mk +++ b/lib/bind/config.mk @@ -98,12 +98,12 @@ CRYPTO_LDADD= -lcrypto # Link against POSIX threads library .if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "sparc64" -.if defined(NOLIBC_R) -.error "BIND requires libpthread - define NO_BIND, or undefine NOLIBC_R" +.if defined(NO_LIBC_R) +.error "BIND requires libpthread - define NO_BIND, or undefine NO_LIBC_R" .endif .else -.if defined(NOLIBPTHREAD) -.error "BIND requires libpthread - define NO_BIND, or undefine NOLIBPTHREAD" +.if defined(NO_LIBPTHREAD) +.error "BIND requires libpthread - define NO_BIND, or undefine NO_LIBPTHREAD" .endif .endif |
