1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-29 10:18:30 +00:00

Rename option PORT_FFI --> LIBFFI.

Suggested by:	koobs
This commit is contained in:
Dmitry Sivachenko 2014-11-04 07:33:33 +00:00
parent 317232f024
commit 2824b8d0af
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=372134

View File

@ -35,8 +35,8 @@ MAKE_ARGS+= LIBPC="${PREFIX}/libdata/pkgconfig" # Until pathfix gets support
PLIST_SUB= ABI=${ABIFLAGS} \
OSMAJOR=${OSVERSION:C/([0-9]*)[0-9]{5}/\1/} # For plat-freebsd* in pkg-plist. http://bugs.python.org/issue19554
OPTIONS_DEFINE= DEBUG IPV6 NLS PYMALLOC THREADS TSC PORT_FFI
OPTIONS_DEFAULT= IPV6 NLS PYMALLOC THREADS PORT_FFI
OPTIONS_DEFINE= DEBUG IPV6 NLS PYMALLOC THREADS TSC LIBFFI
OPTIONS_DEFAULT= IPV6 NLS PYMALLOC THREADS LIBFFI
OPTIONS_RADIO= HASH
OPTIONS_RADIO_HASH= FNV SIPHASH
OPTIONS_SUB= yes
@ -44,7 +44,7 @@ OPTIONS_SUB= yes
NLS_DESC= Enable gettext support for the locale module
PYMALLOC_DESC= Enable specialized mallocs
TSC_DESC= Enable processor timestamp counter profiling
PORT_FFI_DESC= Use devel/ffi instead of ffi bundled with Python
LIBFFI_DESC= Use libffi from ports instead of bundled version
HASH_DESC= Hash Algorithm (PEP-456)
FNV_DESC= Modified Fowler-Noll-Vo Algorithm
@ -80,7 +80,7 @@ ABIFLAGS:= m${ABIFLAGS}
ABIFLAGS:= d${ABIFLAGS}
.endif
.if ${PORT_OPTIONS:MPORT_FFI}
.if ${PORT_OPTIONS:MLIBFFI}
CONFIGURE_ARGS+= --with-system-ffi
LIB_DEPENDS+= libffi.so:${PORTSDIR}/devel/libffi
.else