diff options
author | Erlend Egeberg Aasland <erlend.aasland@protonmail.com> | 2022-05-09 09:00:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-09 09:00:20 (GMT) |
commit | 269e7267236256e269a3a6af7a4d4fea1c7439ea (patch) | |
tree | 622cdcd01255b12208cab83dd6bfbab1ad66f1d6 /configure.ac | |
parent | 3edda031e4abcdc8a2974f2708db99eeb109de32 (diff) | |
download | cpython-269e7267236256e269a3a6af7a4d4fea1c7439ea.zip cpython-269e7267236256e269a3a6af7a4d4fea1c7439ea.tar.gz cpython-269e7267236256e269a3a6af7a4d4fea1c7439ea.tar.bz2 |
gh-90005: Cleanup after GH-31698 (#91642)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 39bb5c4..65b9697 100644 --- a/configure.ac +++ b/configure.ac @@ -6869,12 +6869,12 @@ PY_STDLIB_MOD([_sqlite3], [test "$have_sqlite3" = "yes"], [test "$have_supported_sqlite3" = "yes"], [$LIBSQLITE3_CFLAGS], [$LIBSQLITE3_LIBS]) -dnl PY_STDLIB_MOD([_tkinter], [], [], [], []) +PY_STDLIB_MOD([_tkinter], + [], [test "$have_tcltk" = "yes"], + [$TCLTK_CFLAGS], [$TCLTK_LIBS]) PY_STDLIB_MOD([_uuid], [], [test "$have_uuid" = "yes"], [$LIBUUID_CFLAGS], [$LIBUUID_LIBS]) -PY_STDLIB_MOD([_tkinter], [], - [test "$have_tcltk" = "yes"], [$TCLTK_CFLAGS], [$TCLTK_LIBS]) dnl compression libs PY_STDLIB_MOD([zlib], [], [test "$have_zlib" = yes], |