diff options
author | ru <ru@FreeBSD.org> | 2007-12-12 16:39:32 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2007-12-12 16:39:32 +0000 |
commit | d5938a1c2a6280a3467c8ea87ea54e5ee358beea (patch) | |
tree | d1d138e51bf209dea7b2ab3cb7800819a015f7c0 /lib/Makefile | |
parent | b02556dae5c4b2e396b5bee2c663fe38f28d369b (diff) | |
download | FreeBSD-src-d5938a1c2a6280a3467c8ea87ea54e5ee358beea.zip FreeBSD-src-d5938a1c2a6280a3467c8ea87ea54e5ee358beea.tar.gz |
- Fix setting of MK_GSSAPI option by bsd.own.mk; its value should
default to the value of MK_KERBEROS unless set explicitly by
WITH_GSSAPI/WITHOUT_GSSAPI. (This introduces another type of
MK_* variables which itself is questionable.)
- Teach tools/build/options/makeman script that generates the
src.conf(5) manpage about the new type of MK_* variables.
- Fix broken logic in lib/Makefile.
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/Makefile b/lib/Makefile index 3451703..328e4b3 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -62,12 +62,8 @@ _libbluetooth= libbluetooth _libsdp= libsdp .endif -.if ${MK_KERBEROS} != "no" +.if ${MK_GSSAPI} != "no" _libgssapi= libgssapi -.else -.if ${MK_GSSAPI} == "yes" -_libgssapi= libgssapi -.endif .endif .if ${MK_IPX} != "no" |