diff options
Diffstat (limited to 'autotools')
-rw-r--r-- | autotools/webkit.m4 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/autotools/webkit.m4 b/autotools/webkit.m4 index 670cec3..379fa8f 100644 --- a/autotools/webkit.m4 +++ b/autotools/webkit.m4 @@ -50,6 +50,11 @@ if test -z "$PERL"; then AC_MSG_ERROR([You need 'perl' to compile WebKit]) fi +AC_PATH_PROG(PYTHON, python) +if test -z "$PYTHON"; then + AC_MSG_ERROR([You need 'python' to compile WebKit]) +fi + AC_PATH_PROG(BISON, bison) if test -z "$BISON"; then AC_MSG_ERROR([You need the 'bison' parser generator to compile WebKit]) |