Re: [Mesa-dev] [PATCH v2 1/2] configure: allow building with python3

2018-10-31 Thread Emil Velikov
On Wed, 31 Oct 2018 at 16:18, Dylan Baker wrote: > > Quoting Emil Velikov (2018-10-31 04:22:41) > > From: Emil Velikov > > > > Pretty much all of the scripts are python2+3 compatible. > > Check and allow using python3, while adjusting the PYTHON2 refs. > > > > Note: > > - python3.4 is used as it

Re: [Mesa-dev] [PATCH v2 1/2] configure: allow building with python3

2018-10-31 Thread Dylan Baker
Quoting Emil Velikov (2018-10-31 04:22:41) > From: Emil Velikov > > Pretty much all of the scripts are python2+3 compatible. > Check and allow using python3, while adjusting the PYTHON2 refs. > > Note: > - python3.4 is used as it's the earliest supported version > - python2 chosen prior to pyt

Re: [Mesa-dev] [PATCH v2 1/2] configure: allow building with python3

2018-10-31 Thread Emil Velikov
On Wed, 31 Oct 2018 at 11:29, Eric Engestrom wrote: > > --- a/configure.ac > > +++ b/configure.ac > > @@ -124,9 +124,7 @@ AC_PROG_GREP > > AC_PROG_NM > > AM_PROG_AS > > AX_CHECK_GNU_MAKE > > -AM_PATH_PYTHON([2.7],, [:]) > > -PYTHON2=$PYTHON > > -AC_SUBST([PYTHON2]) > > +AM_PATH_PYTHON([2.7],,

Re: [Mesa-dev] [PATCH v2 1/2] configure: allow building with python3

2018-10-31 Thread Eric Engestrom
On Wednesday, 2018-10-31 11:22:41 +, Emil Velikov wrote: > From: Emil Velikov > > Pretty much all of the scripts are python2+3 compatible. > Check and allow using python3, while adjusting the PYTHON2 refs. > > Note: > - python3.4 is used as it's the earliest supported version > - python2 c

[Mesa-dev] [PATCH v2 1/2] configure: allow building with python3

2018-10-31 Thread Emil Velikov
From: Emil Velikov Pretty much all of the scripts are python2+3 compatible. Check and allow using python3, while adjusting the PYTHON2 refs. Note: - python3.4 is used as it's the earliest supported version - python2 chosen prior to python3 v2: use python2 by default Cc: Ilia Mirkin Signed-o