27 lines
877 B
Diff
27 lines
877 B
Diff
From 1a6b097448bf056f1a4ecc3f118e27912e0d70a8 Mon Sep 17 00:00:00 2001
|
|
From: Christoph Reiter <reiter.christoph@gmail.com>
|
|
Date: Thu, 17 Jun 2021 18:52:17 +0530
|
|
Subject: [PATCH 051/N] disable readline
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Co-authored-by: Алексей <alexey.pawlow@gmail.com>
|
|
---
|
|
setup.py | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/setup.py b/setup.py
|
|
index bf7426f..ede61d6 100644
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -1120,6 +1120,8 @@ def detect_readline_curses(self):
|
|
# readline package
|
|
if find_file('readline/rlconf.h', self.inc_dirs, []) is None:
|
|
do_readline = False
|
|
+ if MS_WINDOWS:
|
|
+ do_readline = False
|
|
if do_readline:
|
|
readline_libs = [readline_lib]
|
|
if readline_termcap_library:
|