diff options
author | miwi <miwi@FreeBSD.org> | 2012-06-04 10:53:48 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2012-06-04 10:53:48 +0800 |
commit | 70963a6e2f3ef9dc1afff6e0010bcf021ca463e4 (patch) | |
tree | 6cfa493103d6005b6d11cfd06b4050087da21cc7 /lang/petite-chez | |
parent | ed28d230c63b6531212aa5b158abf6ed0fc8ed3d (diff) | |
download | freebsd-ports-gnome-70963a6e2f3ef9dc1afff6e0010bcf021ca463e4.tar.gz freebsd-ports-gnome-70963a6e2f3ef9dc1afff6e0010bcf021ca463e4.tar.zst freebsd-ports-gnome-70963a6e2f3ef9dc1afff6e0010bcf021ca463e4.zip |
- convert to OptionsNG
PR: 168646
Submitted by: maintainer
Diffstat (limited to 'lang/petite-chez')
-rw-r--r-- | lang/petite-chez/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/petite-chez/Makefile b/lang/petite-chez/Makefile index ddf72d160f03..ebdff54863cc 100644 --- a/lang/petite-chez/Makefile +++ b/lang/petite-chez/Makefile @@ -23,7 +23,7 @@ NO_PACKAGE= user must accept license terms before installation IGNORE= user must accept license terms before installation .endif -OPTIONS= THREADS "Install threaded version" off +OPTIONS_DEFINE= THREADS WRKSRC= ${WRKDIR}/csv${PORTVERSION}/custom HAS_CONFIGURE= yes @@ -49,7 +49,7 @@ CHEZ_MACHTYPE= i3fb CHEZ_MACHTYPE= a6fb .endif -.if defined(WITH_THREADS) +.if ${PORT_OPTIONS:MTHREADS} CHEZ_MACHTYPE:= t${CHEZ_MACHTYPE} .endif |