diff options
author | Jeremy Lea <reg@FreeBSD.org> | 2000-10-09 16:56:43 +0000 |
---|---|---|
committer | Jeremy Lea <reg@FreeBSD.org> | 2000-10-09 16:56:43 +0000 |
commit | 90e433dbdef59cca4d381e0a6b2f498310c2b9e0 (patch) | |
tree | d1860aca132284b4bbafb716e34b7d199dcaa5b3 /Mk | |
parent | Update to 6.0.3. (diff) |
Correct the documentation of the WITH_ and WITHOUT_ options.
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.gnome.mk | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Mk/bsd.gnome.mk b/Mk/bsd.gnome.mk index c659c06903d5..f2200f341b77 100644 --- a/Mk/bsd.gnome.mk +++ b/Mk/bsd.gnome.mk @@ -21,9 +21,9 @@ Gnome_Include_MAINTAINER= reg@FreeBSD.org # The logic of this section is like this: # # .if defined(WANT_FOO) -# .if ${WITH_FOO} == "yes" +# .if defined(WITH_FOO) # HAVE_FOO=yes -# .elif ${WITH_FOO} == "no" +# .elif defined(WITHOUT_FOO) # .undef HAVE_FOO # .elif (if FOO installed) # HAVE_FOO=yes @@ -51,10 +51,11 @@ Gnome_Include_MAINTAINER= reg@FreeBSD.org # GLib/GTK+/GNOME group of software. There are the following options: # # WITH_GLIB, WITH_GTK, WITH_ESOUND, WITH_IMLIB, WITH_GNOME: -# yes - Only set by the user, indicates that they always want -# this setting. -# no - Only set by the user, indicates that they never want -# this setting. +# - Only set by the user, indicates that they always want +# this setting. +# WITHOUT_GLIB, WITHOUT_GTK, WITHOUT_ESOUND, WITHOUT_IMLIB, WITHOUT_GNOME: +# - Only set by the user, indicates that they never want +# this setting. # # The following variables might be set: # |