[Bug 258234] editors/vim: python option not enabling python3interp
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 02 Sep 2021 23:30:25 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=258234
Bug ID: 258234
Summary: editors/vim: python option not enabling python3interp
Product: Ports & Packages
Version: Latest
Hardware: Any
OS: Any
Status: New
Severity: Affects Many People
Priority: ---
Component: Individual Port(s)
Assignee: adamw@FreeBSD.org
Reporter: dereks@lifeofadishwasher.com
Assignee: adamw@FreeBSD.org
Flags: maintainer-feedback?(adamw@FreeBSD.org)
Created attachment 227629
--> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=227629&action=edit
Pass python3 configure args
OPT_CONFIGURE_ARGS isn't part of the options framework. Use ..._ENABLE and
..._WITH.
Pre-patch
--CONFIGURE_ARGS--
--disable-canberra --enable-cscope --enable-gui= --enable-multibyte
--with- tlib=ncursesw --disable-luainterp --without-lua-prefix --enable-nls
--disable-perlinterp --disable-rubyinterp --disable-mzschemeinterp
--disable-tclinterp --without-tclsh --prefix=/usr/local ${_LATE_CONFIGURE_ARGS}
--End CONFIGURE_ARGS--
$ pkg info -i vim
vim-8.2.3394
$ pkg info -f vim | fgrep PYTHON
PYTHON : on
$ vim --version | fgrep python3
+cmdline_info +libcall -python3 +visualextra
configure phase:
...
checking --enable-python3interp argument... no
...
Post-update:
...
checking --enable-python3interp argument... yes
checking --with-python3-command argument... /usr/local/bin/python3.8
checking Python version... 3.8
...
$ vim --version | fgrep \+python3
+cmdline_info +libcall +python3 +visualextra
--
You are receiving this mail because:
You are the assignee for the bug.