diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 75c0e4e5..c3f856e1 100644 --- a/configure.ac +++ b/configure.ac @@ -32,7 +32,7 @@ case "$host" in os_win32=no ;; esac -AM_CONDITIONAL(OS_WIN32, [test x"$os_win32" = "xyes"]) +AM_CONDITIONAL(OS_WIN32, [test "x$os_win32" = "xyes"]) # Checks for programs. AC_PROG_CC @@ -261,7 +261,9 @@ case "$host" in ;; esac AM_CHECK_PYTHON_HEADERS(, AC_MSG_ERROR([Python headers not found])) -AM_CHECK_PYTHON_LIBS(, AC_MSG_ERROR([Python libs not found])) +if test "x$os_win32" = "xyes"; then + AM_CHECK_PYTHON_LIBS(, AC_MSG_ERROR([Python libs not found. Windows requires Python modules to be explicitly linked to libpython.])) +fi # Glib documentation |