Subversion Repositories liboop

Compare Revisions

Ignore whitespace Rev 51 → Rev 55

/tags/1.0-11/debian/changelog
1,3 → 1,12
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).
* Bump Standards-Version to 3.9.5.
 
-- Magnus Holmgren <holmgren@debian.org> Sun, 13 Apr 2014 23:36:30 +0200
 
liboop (1.0-10) unstable; urgency=low
 
* Update homepage URL and upstream maintainers.
/tags/1.0-11/debian/control
5,7 → 5,7
Build-Depends: dpkg-dev (>= 1.15.7), debhelper (>= 7), libtool,
dh-autoreconf, autoconf, automake, libadns1-dev, libglib2.0-dev,
libreadline-dev, tcl-dev
Standards-Version: 3.9.4
Standards-Version: 3.9.5
Homepage: http://www.lysator.liu.se/liboop/
 
Package: liboop4
/tags/1.0-11/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);
}
/tags/1.0-11/debian/patches/series
2,3 → 2,4
configure_support_freebsd_hurd.patch
explicit_linking.patch
tcl_dev.patch
new-readline-typedef.patch