af93f62e24
it now uses the fltk2 toolkit instead of gtk1 add a patch to fix accessing websites that have ipv6 addr while you don't full changelog: http://cvs.auriga.wearlab.de/cgi-bin/cvsweb.cgi/dillo2/ChangeLog?rev=HEAD;cvsroot=dillo from new MAINTAINER James Turner (former maintainer Jim Uhl resigned) requested by kili@
13 lines
436 B
Plaintext
13 lines
436 B
Plaintext
$OpenBSD: patch-dpi_datauri_c,v 1.2 2008/10/19 08:42:55 ajacoutot Exp $
|
|
--- dpi/datauri.c.orig Sat Oct 18 10:57:54 2008
|
|
+++ dpi/datauri.c Sat Oct 18 10:59:16 2008
|
|
@@ -296,7 +296,7 @@ int main(void)
|
|
data = datauri_get_data(url, &data_size);
|
|
|
|
MSG("mime_type: %s\n", mime_type);
|
|
- MSG("data_size: %d\n", (int)data_size);
|
|
+ MSG("data_size: %ld\n", (int)data_size);
|
|
MSG("data: {%s}\n", data);
|
|
|
|
if (mime_type && data) {
|