summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2007-12-12 16:39:32 +0000
committerru <ru@FreeBSD.org>2007-12-12 16:39:32 +0000
commitd5938a1c2a6280a3467c8ea87ea54e5ee358beea (patch)
treed1d138e51bf209dea7b2ab3cb7800819a015f7c0 /tools
parentb02556dae5c4b2e396b5bee2c663fe38f28d369b (diff)
downloadFreeBSD-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 'tools')
-rw-r--r--tools/build/options/WITHOUT_GSSAPI2
-rw-r--r--tools/build/options/WITH_GSSAPI4
-rw-r--r--tools/build/options/makeman19
3 files changed, 17 insertions, 8 deletions
diff --git a/tools/build/options/WITHOUT_GSSAPI b/tools/build/options/WITHOUT_GSSAPI
new file mode 100644
index 0000000..0f31dd9
--- /dev/null
+++ b/tools/build/options/WITHOUT_GSSAPI
@@ -0,0 +1,2 @@
+.\" $FreeBSD$
+Set to not build libgssapi.
diff --git a/tools/build/options/WITH_GSSAPI b/tools/build/options/WITH_GSSAPI
deleted file mode 100644
index 77d9cde..0000000
--- a/tools/build/options/WITH_GSSAPI
+++ /dev/null
@@ -1,4 +0,0 @@
-.\" $FreeBSD$
-Set to build libgssapi when
-.Va WITHOUT_KERBEROS
-is set.
diff --git a/tools/build/options/makeman b/tools/build/options/makeman
index f05b686..c3c8758 100644
--- a/tools/build/options/makeman
+++ b/tools/build/options/makeman
@@ -49,7 +49,7 @@ show()
main()
{
- trap 'rm -f _config _config2 _deps' exit
+ trap 'rm -f _defcfg _config _config2 _deps _deps2' exit
ident=${ident#$}
ident=${ident% $}
fbsdid='$'FreeBSD'$'
@@ -134,7 +134,7 @@ The following list provides a name and short description for variables
that can be used for source builds.
.Bl -tag -width indent
EOF
- show settings |sort >_config
+ show settings |sort >_defcfg
show options |
while read opt; do
if [ -f ${opt} ]; then
@@ -146,8 +146,8 @@ EOF
echo "no description found for ${opt}, skipping" >/dev/stderr
continue
fi
- show settings -D${opt} |sort >_config2
- comm -13 _config _config2 |grep -v "^${opt}$" >_deps
+ show settings -D${opt} |sort >_config
+ comm -13 _defcfg _config |grep -v "^${opt}$" >_deps
if [ -s _deps ]; then
cat <<EOF
When set, it also enforces the following options:
@@ -159,6 +159,17 @@ EOF
.It
.Va ${opt2}
EOF
+ show settings -D${opt} $(
+ echo ${opt2} |
+ sed -e's/^WITHOUT_/-DWITH_/' -e's/^WITH_/-DWITHOUT_/'
+ ) |sort >_config2
+ comm -13 _config _config2 >_deps2
+ if [ -s _deps2 ]; then
+ cat <<EOF
+(can be overridden with
+.Va $(cat _deps2) )
+EOF
+ fi
done
cat <<EOF
.El
OpenPOWER on IntegriCloud