pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/dillo Changes 0.8.1:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/25853b5649db
branches:  trunk
changeset: 475780:25853b5649db
user:      adam <adam%pkgsrc.org@localhost>
date:      Wed May 26 08:06:56 2004 +0000

description:
Changes 0.8.1:
- * Fixed dirent.h includes inside dpid.
- * Fixed a slippery bug with certain interlaced gif images (BUG#500).
- * Fixed libpng-1.2.4 detection in configure.in.
- * Added proxy authentication support through the "http_proxyuser" option
    in dillorc (the password is asked at run time).
- * Moved tooltips to DwStyle, tooltip event handling to DwPage, and applied
    this also to the TITLE attribute of <a> and <abbr>.
- * Fixed a bug related to spaces after anchors and breaks.
- * Removed two "type punning" gcc warnings (dw_gtk_viewport.c).
  * Added some missing "static" qualifiers.
  * Improved a_Strbuf_chars() so no list reversion is required.
  * Removed an unused data list (dns.c), and redundant code (selection.c).
  * Switch one realloc() call to g_realloc(), to match g_free() (dpi.c).
  * Removed unnecessary NULL-checks and NULL initializations.
  * Added Html_get_attr_wdef(), it lets providing a default return value.
- * Fixed configure.in so pthreads are only linked where needed.
- * Modified a_Misc_stuff_chars for simplicity and removed a memory leak.
  * Made the dpi framework send the HTTP query to the https dpi
    (this allows for an SSL-lib dpi and for easier session caching).
  * Cleaned up the int2void and void2int casts in CCC parameters.
  * Added container|inline model information to the HTML element table, and
    made the bug-meter and the parser aware of it. This both improves bug
    detection and rendering.
  * Fixed newly detected HTML bugs in bookmarks dpi and file.c.
  * Fixed opening files with a ':' character in its name (again).
  * Added binaryconst.h (allows for binary constants in C).
  * Fixed The ladder effect with lists (BUG#534).
  * Made the bug-meter detect tags lacking a closing '>' (BUG#532).
  * Made the bug-meter detect excluded inline elements from <PRE>.
  * Eliminated a segfault source with tricky <input> tags (BUG#552).
  * Fixed <address> to render as a block element (BUG#527).
  * Added a content test for "name" and "id" attribute values (BUG#536).
  * Fixed the URL resolver handling of the "//" sequence in <path> (BUG#535).
  * Added "show_extra_warnings" and removed "use_old_parser" (dillorc).
  * Added minor support for the deprecated <MENU> element.
  * Eliminated a race condition that produced segfaults when a dpi transfer
    was cancelled before the contents were sent (a very rare case).
  * Added a test for socklen_t in configure.in.
  * Fixed the downloads dpi to handle both new savenames and target directory.
  * GdkRgb: fixed handling of not usable system default visual and colormap.
  * Made dillo recognize unhandled MIME types, and offer a download dialog!

diffstat:

 www/dillo/Makefile         |  15 +++++++--------
 www/dillo/PLIST            |   9 ++++++++-
 www/dillo/distinfo         |   8 ++++----
 www/dillo/patches/patch-ab |   8 ++++----
 4 files changed, 23 insertions(+), 17 deletions(-)

diffs (80 lines):

diff -r ca67a1d8271d -r 25853b5649db www/dillo/Makefile
--- a/www/dillo/Makefile        Wed May 26 07:57:00 2004 +0000
+++ b/www/dillo/Makefile        Wed May 26 08:06:56 2004 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.18 2004/03/14 01:26:55 xtraeme Exp $
-#
+# $NetBSD: Makefile,v 1.19 2004/05/26 08:06:56 adam Exp $
 
-DISTNAME=      dillo-0.8.0
+DISTNAME=      dillo-0.8.1
 CATEGORIES=    www
 MASTER_SITES=  http://dillo.auriga.wearlab.de/download/
 EXTRACT_SUFX=  .tar.bz2
@@ -10,12 +9,12 @@
 HOMEPAGE=      http://dillo.auriga.wearlab.de/
 COMMENT=       Very small and fast graphical web-browser
 
-USE_BUILDLINK3=        YES
-USE_PKGINSTALL=        YES
-USE_X11=       YES
-GNU_CONFIGURE= YES
+USE_BUILDLINK3=                YES
+USE_PKGINSTALL=                YES
+USE_X11=               YES
+GNU_CONFIGURE=         YES
 
-CONFIGURE_ARGS=        --sysconfdir=${PKG_SYSCONFDIR}
+CONFIGURE_ARGS=                --sysconfdir=${PKG_SYSCONFDIR}
 
 EGDIR=         ${PREFIX}/share/examples/dillo
 CONF_FILES=    ${EGDIR}/dillorc.default ${PKG_SYSCONFDIR}/dillorc
diff -r ca67a1d8271d -r 25853b5649db www/dillo/PLIST
--- a/www/dillo/PLIST   Wed May 26 07:57:00 2004 +0000
+++ b/www/dillo/PLIST   Wed May 26 08:06:56 2004 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2004/03/14 01:26:55 xtraeme Exp $
+@comment $NetBSD: PLIST,v 1.8 2004/05/26 08:06:56 adam Exp $
 bin/dillo
 bin/dpid
 bin/dpidc
@@ -29,3 +29,10 @@
 share/examples/dillo/dillorc.default
 @dirrm share/examples/dillo
 @dirrm share/doc/dillo
+@dirrm lib/dillo/dpi/https
+@dirrm lib/dillo/dpi/hello
+@dirrm lib/dillo/dpi/ftp
+@dirrm lib/dillo/dpi/downloads
+@dirrm lib/dillo/dpi/bookmarks
+@dirrm lib/dillo/dpi
+@dirrm lib/dillo
diff -r ca67a1d8271d -r 25853b5649db www/dillo/distinfo
--- a/www/dillo/distinfo        Wed May 26 07:57:00 2004 +0000
+++ b/www/dillo/distinfo        Wed May 26 08:06:56 2004 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.16 2004/03/14 01:26:55 xtraeme Exp $
+$NetBSD: distinfo,v 1.17 2004/05/26 08:06:56 adam Exp $
 
-SHA1 (dillo-0.8.0.tar.bz2) = 32c6e2805c8c03ce3ea6fa98dd7af568ea745bee
-Size (dillo-0.8.0.tar.bz2) = 396058 bytes
-SHA1 (patch-ab) = 1e71983377f5de2c68b322f085526af33e2efcc2
+SHA1 (dillo-0.8.1.tar.bz2) = 1a75de677f9c88365ee28e4f5a0bbebba31cc7d9
+Size (dillo-0.8.1.tar.bz2) = 400697 bytes
+SHA1 (patch-ab) = b170b651773c226604df0bc645fe43865fb8985f
diff -r ca67a1d8271d -r 25853b5649db www/dillo/patches/patch-ab
--- a/www/dillo/patches/patch-ab        Wed May 26 07:57:00 2004 +0000
+++ b/www/dillo/patches/patch-ab        Wed May 26 08:06:56 2004 +0000
@@ -1,8 +1,8 @@
-$NetBSD: patch-ab,v 1.9 2004/03/14 01:26:55 xtraeme Exp $
+$NetBSD: patch-ab,v 1.10 2004/05/26 08:06:56 adam Exp $
 
---- Makefile.in.orig   2004-03-14 02:13:15.000000000 +0100
-+++ Makefile.in        2004-03-14 02:13:24.000000000 +0100
-@@ -136,7 +136,7 @@
+--- Makefile.in.orig   2004-05-13 20:51:56.000000000 +0000
++++ Makefile.in
+@@ -138,7 +138,7 @@ SUBDIRS = doc src dpid dpi
  
  EXTRA_DIST = ChangeLog.old dillorc install-dpi-local
  



Home | Main Index | Thread Index | Old Index