summaryrefslogtreecommitdiffstats
path: root/calibre
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2015-05-25 23:42:26 +0000
committer Eric Hameleers <alien@slackware.com>2015-05-25 23:42:26 +0000
commitc0518f9c3127ee1bea1d94aff95509df3e94f8f5 (patch)
tree2ea011b799e3a6aeb7e90c6a85e1fdb4cb5d4302 /calibre
parenta8012eeb1b5b613924d579653a4294381c455cc5 (diff)
downloadasb-c0518f9c3127ee1bea1d94aff95509df3e94f8f5.tar.gz
asb-c0518f9c3127ee1bea1d94aff95509df3e94f8f5.tar.xz
Initial revision
Diffstat (limited to 'calibre')
-rw-r--r--calibre/build/patches1/python.readline.set_pre_input_hook.diff12
1 files changed, 12 insertions, 0 deletions
diff --git a/calibre/build/patches1/python.readline.set_pre_input_hook.diff b/calibre/build/patches1/python.readline.set_pre_input_hook.diff
new file mode 100644
index 00000000..8f5570c9
--- /dev/null
+++ b/calibre/build/patches1/python.readline.set_pre_input_hook.diff
@@ -0,0 +1,12 @@
+--- ./Modules/readline.c.orig 2010-05-09 10:15:40.000000000 -0500
++++ ./Modules/readline.c 2010-11-27 17:08:38.000000000 -0600
+@@ -11,6 +11,9 @@
+ #include <errno.h>
+ #include <sys/time.h>
+
++/* This seems to be needed for set_pre_input_hook to work */
++#define HAVE_RL_PRE_INPUT_HOOK 1
++
+ #if defined(HAVE_SETLOCALE)
+ /* GNU readline() mistakenly sets the LC_CTYPE locale.
+ * This is evil. Only the user or the app's main() should do this!