mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-26 05:56:14 +01:00
Add a --with-python option
The effect is the same as specifying PYTHON=python3, but a configure option works better in jhbuild. https://bugzilla.gnome.org/show_bug.cgi?id=684103
This commit is contained in:
parent
86610b0594
commit
3e5068c186
11
configure.ac
11
configure.ac
@ -382,7 +382,16 @@ if test "x$PERL_PATH" = x ; then
|
|||||||
fi
|
fi
|
||||||
AC_SUBST(PERL_PATH)
|
AC_SUBST(PERL_PATH)
|
||||||
|
|
||||||
# Need suitable python path for greport
|
# option to specify python interpreter to use; this just sets $PYTHON, so that
|
||||||
|
# we will fallback to reading $PYTHON if --with-python is not given, and
|
||||||
|
# python.m4 will get the expected input
|
||||||
|
AC_ARG_WITH(python,
|
||||||
|
AS_HELP_STRING([--with-python=PATH],
|
||||||
|
[Path to Python interpreter; searches $PATH if only a program name is given; if not given, searches for a few standard names such as "python3" or "python2"]),
|
||||||
|
[PYTHON="$withval"], [])
|
||||||
|
if test x"$PYTHON" = xyes; then
|
||||||
|
AC_MSG_ERROR([--with-python option requires a path or program argument])
|
||||||
|
fi
|
||||||
AM_PATH_PYTHON(2.5,,PYTHON="/usr/bin/env python2.5")
|
AM_PATH_PYTHON(2.5,,PYTHON="/usr/bin/env python2.5")
|
||||||
|
|
||||||
|
|
||||||
|
@ -533,6 +533,14 @@
|
|||||||
</para>
|
</para>
|
||||||
</formalpara>
|
</formalpara>
|
||||||
|
|
||||||
|
<formalpara>
|
||||||
|
<title><systemitem>--with-python</systemitem></title>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
Allows specifying the Python interpreter to use, either as an absolute path,
|
||||||
|
or as a program name. GLib can be built with Python 2 (at least version 2.5)
|
||||||
|
or Python 3.
|
||||||
|
</para>
|
||||||
</refsect1>
|
</refsect1>
|
||||||
|
|
||||||
</refentry>
|
</refentry>
|
||||||
|
Loading…
Reference in New Issue
Block a user