diff options
author | reg <reg@FreeBSD.org> | 2000-10-10 00:56:43 +0800 |
---|---|---|
committer | reg <reg@FreeBSD.org> | 2000-10-10 00:56:43 +0800 |
commit | c3da4156125dcc10e76637b17d1561e2dd678aa7 (patch) | |
tree | 2e500b7e41099c9c21139b7c02731cb1d9842080 | |
parent | 03babbb0fb4743e673a81a0df4d3d761f156734e (diff) | |
download | freebsd-ports-gnome-c3da4156125dcc10e76637b17d1561e2dd678aa7.tar.gz freebsd-ports-gnome-c3da4156125dcc10e76637b17d1561e2dd678aa7.tar.zst freebsd-ports-gnome-c3da4156125dcc10e76637b17d1561e2dd678aa7.zip |
Correct the documentation of the WITH_ and WITHOUT_ options.
-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: # |