1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Attempt to fix jsonb_plpython build on Windows

This commit is contained in:
Peter Eisentraut
2018-03-28 11:49:23 -04:00
parent e81fc9b9db
commit 75e95dd79b
3 changed files with 29 additions and 14 deletions

View File

@ -326,6 +326,7 @@ sub subdircheck
# Makefile for more details regarding Python-version specific
# dependencies.
if ( $module eq "hstore_plpython"
|| $module eq "jsonb_plpython"
|| $module eq "ltree_plpython")
{
die "Python not enabled in configuration"
@ -376,6 +377,7 @@ sub contribcheck
next if ($module eq "xml2" && !defined($config->{xml}));
next if ($module eq "hstore_plperl" && !defined($config->{perl}));
next if ($module eq "hstore_plpython" && !defined($config->{python}));
next if ($module eq "jsonb_plpython" && !defined($config->{python}));
next if ($module eq "ltree_plpython" && !defined($config->{python}));
next if ($module eq "sepgsql");