Skip to content

Commit 09cdb95

Browse files
committed
updated for version 7.3.1193
Problem: fail_if_missing not used for Python 3. Solution: Give an error when Python 3 can't be configured. (Andrei Olsen)
1 parent b9abfd7 commit 09cdb95

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

src/auto/configure

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5826,6 +5826,9 @@ rm -f core conftest.err conftest.$ac_objext \
58265826
$as_echo "too old" >&6; }
58275827
fi
58285828
fi
5829+
if test "$fail_if_missing" = "yes" -a "$python3_ok" != "yes"; then
5830+
as_fn_error "could not configure python3" "$LINENO" 5
5831+
fi
58295832
fi
58305833

58315834

src/configure.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1229,6 +1229,9 @@ eof
12291229
AC_MSG_RESULT(too old)
12301230
fi
12311231
fi
1232+
if test "$fail_if_missing" = "yes" -a "$python3_ok" != "yes"; then
1233+
AC_MSG_ERROR([could not configure python3])
1234+
fi
12321235
fi
12331236

12341237
AC_SUBST(PYTHON3_CONFDIR)

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -728,6 +728,8 @@ static char *(features[]) =
728728

729729
static int included_patches[] =
730730
{ /* Add new patch number below this line */
731+
/**/
732+
1193,
731733
/**/
732734
1192,
733735
/**/

0 commit comments

Comments
 (0)