diff options
author | reg <reg@FreeBSD.org> | 2000-04-17 08:19:02 +0800 |
---|---|---|
committer | reg <reg@FreeBSD.org> | 2000-04-17 08:19:02 +0800 |
commit | d22cbcc0186bfcde72d3058c3d06d1032bb7157e (patch) | |
tree | efb5227e2fc359da16edf2ca8a5ca4744a25bc3e /x11/wdm | |
parent | 8b766534122d71052c9f8e5a0752944edf0450f8 (diff) | |
download | freebsd-ports-gnome-d22cbcc0186bfcde72d3058c3d06d1032bb7157e.tar.gz freebsd-ports-gnome-d22cbcc0186bfcde72d3058c3d06d1032bb7157e.tar.zst freebsd-ports-gnome-d22cbcc0186bfcde72d3058c3d06d1032bb7157e.zip |
Standardize all user defined options to the booleans WITH_FOO and
WITHOUT_FOO. Begin the process of reserving these prefixes for user defined
options.
No comment by: ports
Diffstat (limited to 'x11/wdm')
-rw-r--r-- | x11/wdm/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11/wdm/Makefile b/x11/wdm/Makefile index d1fbb84238bd..d052c24c4c31 100644 --- a/x11/wdm/Makefile +++ b/x11/wdm/Makefile @@ -36,14 +36,14 @@ MAN1= wdm.1 wdmLogin.1 DAEMONPIC= daemon1-HQ-1280x960.jpg -.if defined(USE_PAM) +.if defined(WITH_PAM) CONFIGURE_ARGS+= --enable-pam LIBPAM= -lpam .endif pre-fetch: -.if !defined(USE_PAM) - @${ECHO_MSG} "To build this port with PAM support, define \"USE_PAM\"." +.if !defined(WITH_PAM) + @${ECHO_MSG} "To build this port with PAM support, define \"WITH_PAM\"." .endif post-extract: |