/trunk/debian/changelog |
---|
1,3 → 1,11 |
liboop (1.0-11) unstable; urgency=medium |
* new-readline-typedef.patch (new): Replace obsolete typedef for |
callback function pointer cast (in test-oop, which we don't use) |
(Closes: #743094). |
-- Magnus Holmgren <holmgren@debian.org> Sun, 13 Apr 2014 23:31:06 +0200 |
liboop (1.0-10) unstable; urgency=low |
* Update homepage URL and upstream maintainers. |
/trunk/debian/patches/new-readline-typedef.patch |
---|
0,0 → 1,11 |
--- a/test-oop.c |
+++ b/test-oop.c |
@@ -180,7 +180,7 @@ static void *stop_readline(oop_source *s |
static void add_readline(oop_source *src) { |
rl_callback_handler_install( |
(char *) "> ", /* readline isn't const-correct */ |
- (VFunction *) on_readline); |
+ (rl_vcpfunc_t *) on_readline); |
oop_readline_register(src); |
src->on_signal(src,SIGQUIT,stop_readline,NULL); |
} |
/trunk/debian/patches/series |
---|
2,3 → 2,4 |
configure_support_freebsd_hurd.patch |
explicit_linking.patch |
tcl_dev.patch |
new-readline-typedef.patch |