[Fontconfig] fontconfig: Branch 'master'
Akira TAGOH
tagoh at kemper.freedesktop.org
Fri Jul 8 02:14:52 UTC 2016
autogen.sh | 9 +++++++++
1 file changed, 9 insertions(+)
New commits:
commit 416cdd9d494fb040cc4f492a9c6ba23ca52ae250
Author: Akira TAGOH <akira at tagoh.org>
Date: Fri Jul 8 11:14:34 2016 +0900
Check python installed in autogen.sh
python is required to build fontconfig from the scratch
diff --git a/autogen.sh b/autogen.sh
index 40751ee..07c59a4 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -47,6 +47,7 @@ AUTOMAKE=${AUTOMAKE-automake}
AUTOHEADER=${AUTOHEADER-autoheader}
AUTOCONF=${AUTOCONF-autoconf}
GPERF=${GPERF-gperf}
+PYTHON=${PYTHON-python}
LIBTOOLIZE_FLAGS="--copy --force"
DIE=0
@@ -59,6 +60,14 @@ DIE=0
DIE=1
}
+($PYTHON --version) < /dev/null > /dev/null 2>&1 || {
+ echo
+ echo "You must have python installed to compile $PROJECT."
+ echo "Install the appropriate package for your distribution."
+ echo "or get the source tarball at https://www.python.org/downloads/source/"
+ DIE=1
+}
+
have_libtool=false
if $LIBTOOLIZE --version < /dev/null > /dev/null 2>&1 ; then
libtool_version=`$LIBTOOLIZE --version | sed 's/^.* \([0-9][.][0-9.]*\)[^ ]*$/\1/'`
More information about the Fontconfig
mailing list