diff options
author | reg <reg@FreeBSD.org> | 2000-04-17 00:19:02 +0000 |
---|---|---|
committer | reg <reg@FreeBSD.org> | 2000-04-17 00:19:02 +0000 |
commit | d22cbcc0186bfcde72d3058c3d06d1032bb7157e (patch) | |
tree | efb5227e2fc359da16edf2ca8a5ca4744a25bc3e /x11-wm/afterstep-stable | |
parent | 8b766534122d71052c9f8e5a0752944edf0450f8 (diff) | |
download | FreeBSD-ports-d22cbcc0186bfcde72d3058c3d06d1032bb7157e.zip FreeBSD-ports-d22cbcc0186bfcde72d3058c3d06d1032bb7157e.tar.gz |
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-wm/afterstep-stable')
-rw-r--r-- | x11-wm/afterstep-stable/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/x11-wm/afterstep-stable/Makefile b/x11-wm/afterstep-stable/Makefile index 2abb478..82bb991 100644 --- a/x11-wm/afterstep-stable/Makefile +++ b/x11-wm/afterstep-stable/Makefile @@ -29,15 +29,15 @@ CONFIGURE_ARGS= --with-png-includes="${LOCALBASE}/include" \ --with-jpeg-libs="${LOCALBASE}/lib" \ --with-helpcommand="xterm -e man" -.if defined(USE_I18N) +.if defined(WITH_I18N) CONFIGURE_ARGS+= --enable-i18n .endif -.if defined(DIFFERENT_LOOKNFEELS) +.if defined(WITH_DIFFERENT_LOOKNFEELS) CONFIGURE_ARGS+= --enable-different-looknfeels .endif -.if !defined(USE_SAVEWINDOWS) +.if !defined(WITH_SAVEWINDOWS) CONFIGURE_ARGS+= --disable-savewindows .endif @@ -47,7 +47,7 @@ MAN1= Animate.1x Audio.1x Banner.1x Cascade.1x Clean.1x Form.1x Gnome.1x \ post-install: ${INSTALL_DATA} ${FILESDIR}/monitor_bsd.xpm ${PREFIX}/share/afterstep/desktop/icons/common/ -.if defined(DIFFERENT_LOOKNFEELS) +.if defined(WITH_DIFFERENT_LOOKNFEELS) @${ECHO_MSG} "" @${ECHO_MSG} "===> The WinList module is broken with different-looknfeels. Don't use it." @${ECHO_MSG} "" |