On Sat, 18 Oct 2008, Antoine Jacoutot wrote: > On Fri, 17 Oct 2008, James Turner wrote: > > > Attached are two new ports, one fro dillo2 and the other for fltk2. They > > were put together rather quickly today, so any suggestions are always > > welcome. Tested on i386 and amd64.
(CC'd Jim Uhl, dillo's MAINTAINER) So, I changed your port a bit. * fltk2: - respect CC and CXX - fix WANTLIB - force overlay support for when an X11 server in not running on the build machine - enable regress/demo - explicitely enable/disable configure switches - tweak PKGNAME so fltk and fltk2 can be installed next to each other * dillo - make a diff from dillo-1.x which we have in ports - some small cleanings Tested on i386, amd64 and macppc so far. Comments/OK ? -- Antoine
Index: Makefile =================================================================== RCS file: /cvs/ports/www/dillo/Makefile,v retrieving revision 1.26 diff -u -r1.26 Makefile --- Makefile 15 Sep 2007 20:38:21 -0000 1.26 +++ Makefile 18 Oct 2008 09:21:27 -0000 @@ -1,36 +1,37 @@ # $OpenBSD: Makefile,v 1.26 2007/09/15 20:38:21 merdely Exp $ -COMMENT= Fast and light gtk-based web browser +COMMENT= fast and light graphical web browser -VERSION= 0.8.6 -DISTNAME= dillo-${VERSION} -PKGNAME= ${DISTNAME}p0 +DISTNAME= dillo-2.0 CATEGORIES= www HOMEPAGE= http://www.dillo.org/ MAINTAINER= Jim Uhl <[EMAIL PROTECTED]> -# GPL license +# GPLv3 PERMIT_PACKAGE_CDROM= Yes PERMIT_PACKAGE_FTP= Yes PERMIT_DISTFILES_CDROM= Yes PERMIT_DISTFILES_FTP= Yes -WANTLIB= X11 Xext Xi c crypto glib gmodule iconv intl m \ - pthread ssl stdc++ z + +WANTLIB= X11 Xext Xft Xi Xinerama Xrender c crypto fontconfig m \ + pthread ssl stdc++ z + +MODULES= converters/libiconv MASTER_SITES= ${HOMEPAGE}download/ EXTRACT_SUFX= .tar.bz2 +BUILD_DEPENDS= ::x11/fltk2 LIB_DEPENDS= jpeg.>=62::graphics/jpeg \ - png.>=2::graphics/png \ - gtk.>=1.2,gdk.>=1.2::x11/gtk+ + png.>=2::graphics/png USE_X11= Yes USE_GMAKE= Yes CONFIGURE_STYLE= gnu -CONFIGURE_ARGS= --enable-cookies --enable-ipv6 --disable-dlgui +CONFIGURE_ARGS= --enable-ipv6 CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/libpng" \ LDFLAGS="-L${LOCALBASE}/lib" Index: distinfo =================================================================== RCS file: /cvs/ports/www/dillo/distinfo,v retrieving revision 1.12 diff -u -r1.12 distinfo --- distinfo 5 Apr 2007 17:26:20 -0000 1.12 +++ distinfo 18 Oct 2008 09:21:27 -0000 @@ -1,5 +1,5 @@ -MD5 (dillo-0.8.6.tar.bz2) = tlIz02i70mWlXv/PLBf4Sw== -RMD160 (dillo-0.8.6.tar.bz2) = Biz/hbMwpbRD3cgaNW6B+TBnfLs= -SHA1 (dillo-0.8.6.tar.bz2) = 7gOxG6a3XTGAypBtgnW9Neh2WZU= -SHA256 (dillo-0.8.6.tar.bz2) = R+aVpdNw62VvXkHuuRetYoGxVZv2AXLJ7KibVRip+bk= -SIZE (dillo-0.8.6.tar.bz2) = 441739 +MD5 (dillo-2.0.tar.bz2) = u5mZyr602z2RVofeRl2+sA== +RMD160 (dillo-2.0.tar.bz2) = 9FfloDHYoOaCvlDuFsv7o/6jTqo= +SHA1 (dillo-2.0.tar.bz2) = m95+q1yDXhNQjWOhkKi87E6UVTo= +SHA256 (dillo-2.0.tar.bz2) = hH0dsxvWirmrlLZCsM1ArI08+BaQD11WUhJJhmAd8ek= +SIZE (dillo-2.0.tar.bz2) = 551569 Index: patches/patch-Makefile_in =================================================================== RCS file: /cvs/ports/www/dillo/patches/patch-Makefile_in,v retrieving revision 1.3 diff -u -r1.3 patch-Makefile_in --- patches/patch-Makefile_in 22 Sep 2006 04:13:19 -0000 1.3 +++ patches/patch-Makefile_in 18 Oct 2008 09:21:27 -0000 @@ -1,11 +1,11 @@ -$OpenBSD: patch-Makefile_in,v 1.3 2006/09/22 04:13:19 pvalchev Exp $ ---- Makefile.in.orig Wed Apr 26 09:07:27 2006 -+++ Makefile.in Tue Jun 20 21:09:58 2006 -@@ -252,12 +252,12 @@ - uninstall-info-am: +$OpenBSD$ +--- Makefile.in.orig Fri Oct 17 07:13:44 2008 ++++ Makefile.in Fri Oct 17 07:14:31 2008 +@@ -254,12 +254,12 @@ distclean-hdr: + -rm -f config.h stamp-h1 install-sysconfDATA: $(sysconf_DATA) @$(NORMAL_INSTALL) -- test -z "$(sysconfdir)" || $(mkdir_p) "$(DESTDIR)$(sysconfdir)" +- test -z "$(sysconfdir)" || $(MKDIR_P) "$(DESTDIR)$(sysconfdir)" + $(mkdir_p) $(PREFIX)/share/examples/dillo/ @list='$(sysconf_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ Index: patches/patch-configure =================================================================== RCS file: patches/patch-configure diff -N patches/patch-configure --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ patches/patch-configure 18 Oct 2008 09:21:27 -0000 @@ -0,0 +1,18 @@ +$OpenBSD$ +--- configure.orig Fri Oct 17 06:47:30 2008 ++++ configure Fri Oct 17 06:47:46 2008 +@@ -7604,14 +7604,6 @@ cat >d_size.h <<_______EOF + + #include "config.h" + +-#if HAVE_STDINT_H == 0 +-#include <stdint.h> +-#else +-typedef signed $gint16 int16_t; +-typedef unsigned $gint16 uint16_t; +-typedef signed $gint32 int32_t; +-typedef unsigned $gint32 uint32_t; +-#endif + typedef unsigned char uchar_t; + typedef unsigned short ushort_t; + typedef unsigned long ulong_t; Index: patches/patch-dpi_datauri_c =================================================================== RCS file: /cvs/ports/www/dillo/patches/patch-dpi_datauri_c,v retrieving revision 1.1 diff -u -r1.1 patch-dpi_datauri_c --- patches/patch-dpi_datauri_c 22 Sep 2006 04:13:19 -0000 1.1 +++ patches/patch-dpi_datauri_c 18 Oct 2008 09:21:27 -0000 @@ -1,12 +1,12 @@ -$OpenBSD: patch-dpi_datauri_c,v 1.1 2006/09/22 04:13:19 pvalchev Exp $ ---- dpi/datauri.c.orig Tue Jan 17 07:23:00 2006 -+++ dpi/datauri.c Sat Jul 1 16:32:03 2006 -@@ -298,7 +298,7 @@ +$OpenBSD$ +--- 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", data_size); -+ MSG("data_size: %ld\n", data_size); +- 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) { Index: patches/patch-dpi_file_c =================================================================== RCS file: patches/patch-dpi_file_c diff -N patches/patch-dpi_file_c --- patches/patch-dpi_file_c 22 Sep 2006 04:13:19 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,12 +0,0 @@ -$OpenBSD: patch-dpi_file_c,v 1.1 2006/09/22 04:13:19 pvalchev Exp $ ---- dpi/file.c.orig Tue Apr 11 10:50:23 2006 -+++ dpi/file.c Sat Jul 1 16:30:45 2006 -@@ -615,7 +615,7 @@ - /* Send HTTP stream */ - sock_handler_printf(Client->sh, 0, - "Content-Type: %s\n" -- "Content-length: %ld\n\n", -+ "Content-length: %lld\n\n", - ct, sb->st_size); - - /* Send raw file contents */ Index: patches/patch-dpi_https_c =================================================================== RCS file: patches/patch-dpi_https_c diff -N patches/patch-dpi_https_c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ patches/patch-dpi_https_c 18 Oct 2008 09:21:27 -0000 @@ -0,0 +1,11 @@ +$OpenBSD$ +--- dpi/https.c.orig Fri Oct 17 07:39:18 2008 ++++ dpi/https.c Fri Oct 17 07:39:29 2008 +@@ -69,7 +69,6 @@ + + + #define ENABLE_SSL +-#undef ENABLE_SSL + #ifdef ENABLE_SSL + + #include <openssl/ssl.h> Index: patches/patch-dpid_Makefile_in =================================================================== RCS file: /cvs/ports/www/dillo/patches/patch-dpid_Makefile_in,v retrieving revision 1.2 diff -u -r1.2 patch-dpid_Makefile_in --- patches/patch-dpid_Makefile_in 4 Dec 2004 20:44:27 -0000 1.2 +++ patches/patch-dpid_Makefile_in 18 Oct 2008 09:21:27 -0000 @@ -1,14 +1,24 @@ -$OpenBSD: patch-dpid_Makefile_in,v 1.2 2004/12/04 20:44:27 couderc Exp $ ---- dpid/Makefile.in.orig Mon Oct 25 13:12:18 2004 -+++ dpid/Makefile.in Sat Dec 4 21:20:12 2004 -@@ -475,8 +475,8 @@ uninstall-am: uninstall-binPROGRAMS unin +$OpenBSD$ +--- dpid/Makefile.in.orig Fri Oct 10 16:48:19 2008 ++++ dpid/Makefile.in Fri Oct 17 07:25:33 2008 +@@ -485,13 +485,13 @@ uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIP install-data-local : - $(mkinstalldirs) $(DESTDIR)$(sysconfdir) - echo dpi_dir=$(libdir)/dillo/dpi > $(DESTDIR)$(sysconfdir)/dpidrc -+ $(mkdir_p) $(PREFIX)/share/examples/dillo +- echo >> $(DESTDIR)$(sysconfdir)/dpidrc +- echo "proto.file=file/file.dpi" >> $(DESTDIR)$(sysconfdir)/dpidrc +- echo "proto.ftp=ftp/ftp.filter.dpi" >> $(DESTDIR)$(sysconfdir)/dpidrc +- echo "proto.https=https/https.filter.dpi" >> $(DESTDIR)$(sysconfdir)/dpidrc +- echo "proto.data=datauri/datauri.filter.dpi" >> $(DESTDIR)$(sysconfdir)/dpidrc ++ $(mkinstalldirs) $(PREFIX)/share/examples/dillo/ + echo dpi_dir=$(libdir)/dillo/dpi > $(PREFIX)/share/examples/dillo/dpidrc ++ echo >> $(PREFIX)/share/examples/dillo/dpidrc ++ echo "proto.file=file/file.dpi" >> $(PREFIX)/share/examples/dillo/dpidrc ++ echo "proto.ftp=ftp/ftp.filter.dpi" >> $(PREFIX)/share/examples/dillo/dpidrc ++ echo "proto.https=https/https.filter.dpi" >> $(PREFIX)/share/examples/dillo/dpidrc ++ echo "proto.data=datauri/datauri.filter.dpi" >> $(PREFIX)/share/examples/dillo/dpidrc # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: Index: patches/patch-dpid_main_c =================================================================== RCS file: /cvs/ports/www/dillo/patches/patch-dpid_main_c,v retrieving revision 1.2 diff -u -r1.2 patch-dpid_main_c --- patches/patch-dpid_main_c 4 Dec 2004 20:44:27 -0000 1.2 +++ patches/patch-dpid_main_c 18 Oct 2008 09:21:27 -0000 @@ -1,21 +1,21 @@ $OpenBSD: patch-dpid_main_c,v 1.2 2004/12/04 20:44:27 couderc Exp $ ---- dpid/main.c.orig Fri May 21 16:13:49 2004 -+++ dpid/main.c Wed Aug 18 17:47:53 2004 -@@ -67,7 +67,7 @@ int start_filter_plugin(struct dp dpi_at +--- dpid/main.c.orig Tue Sep 30 16:27:32 2008 ++++ dpid/main.c Sat Oct 18 11:14:19 2008 +@@ -69,7 +69,7 @@ static int start_filter_plugin(struct dp dpi_attr) } - if ( pid == 0) { + if (pid == 0) { /* Child, start plugin */ - if (execl(dpi_attr.path, dpi_attr.path, NULL) == -1) { + if (execl(dpi_attr.path, dpi_attr.path, (void *)NULL) == -1) { ERRMSG("start_plugin", "execl", errno); - fprintf(stderr, "ERROR in child proc for %s\n", dpi_attr.path); + MSG_ERR("ERROR in child proc for %s\n", dpi_attr.path); exit(1); -@@ -99,7 +99,7 @@ void start_server_plugin(struct dp dpi_a - fprintf(stderr, "ERROR in child proc for %s\n", dpi_attr.path); +@@ -101,7 +101,7 @@ static void start_server_plugin(struct dp dpi_attr) + MSG_ERR("ERROR in child proc for %s\n", dpi_attr.path); exit(1); } - if (execl(dpi_attr.path, dpi_attr.path, NULL) == -1) { + if (execl(dpi_attr.path, dpi_attr.path, (void *)NULL) == -1) { ERRMSG("start_plugin", "execl", errno); - fprintf(stderr, "ERROR in child proc for %s\n", dpi_attr.path); + MSG_ERR("ERROR in child proc for %s\n", dpi_attr.path); exit(1); Index: patches/patch-src_IO_dpi_c =================================================================== RCS file: /cvs/ports/www/dillo/patches/patch-src_IO_dpi_c,v retrieving revision 1.7 diff -u -r1.7 patch-src_IO_dpi_c --- patches/patch-src_IO_dpi_c 22 Sep 2006 04:13:19 -0000 1.7 +++ patches/patch-src_IO_dpi_c 18 Oct 2008 09:21:27 -0000 @@ -1,15 +1,15 @@ $OpenBSD: patch-src_IO_dpi_c,v 1.7 2006/09/22 04:13:19 pvalchev Exp $ ---- src/IO/dpi.c.orig Wed Mar 15 07:50:04 2006 -+++ src/IO/dpi.c Tue Jun 20 21:20:04 2006 -@@ -330,9 +330,9 @@ +--- src/IO/dpi.c.orig Sat Oct 18 11:09:20 2008 ++++ src/IO/dpi.c Sat Oct 18 11:10:10 2008 +@@ -302,9 +302,9 @@ static int Dpi_start_dpid(void) /* This is the child process. Execute the command. */ - gchar *path1 = a_Misc_prepend_user_home(".dillo/dpid"); + char *path1 = dStrconcat(dGethomedir(), "/.dillo/dpid", NULL); Dpi_close_fd(st_pipe[0]); - if (execl(path1, "dpid", NULL) == -1) { + if (execl(path1, "dpid", (void *)NULL) == -1) { - g_free(path1); + dFree(path1); - if (execlp("dpid", "dpid", NULL) == -1) { + if (execlp("dpid", "dpid", (void *)NULL) == -1) { - DEBUG_MSG(4, "Dpi_start_dpid (child): %s\n", g_strerror(errno)); + MSG("Dpi_start_dpid (child): %s\n", dStrerror(errno)); do n = write(st_pipe[1], "ERROR", 5); Index: patches/patch-src_IO_http_c =================================================================== RCS file: /cvs/ports/www/dillo/patches/patch-src_IO_http_c,v retrieving revision 1.9 diff -u -r1.9 patch-src_IO_http_c --- patches/patch-src_IO_http_c 4 Dec 2004 20:44:27 -0000 1.9 +++ patches/patch-src_IO_http_c 18 Oct 2008 09:21:27 -0000 @@ -1,15 +1,15 @@ $OpenBSD: patch-src_IO_http_c,v 1.9 2004/12/04 20:44:27 couderc Exp $ ---- src/IO/http.c.orig Wed Oct 6 19:09:44 2004 -+++ src/IO/http.c Sat Dec 4 19:28:46 2004 -@@ -316,6 +316,7 @@ static int Http_connect_socket(ChainLink +--- src/IO/http.c.orig Sun Sep 28 20:57:42 2008 ++++ src/IO/http.c Sat Oct 18 11:14:19 2008 +@@ -344,6 +344,7 @@ static int Http_connect_socket(ChainLink *Info) struct sockaddr_in *sin = (struct sockaddr_in *)&name; socket_len = sizeof(struct sockaddr_in); sin->sin_family = dh->af; + sin->sin_len = socket_len; sin->sin_port = S->port ? htons(S->port) : htons(DILLO_URL_HTTP_PORT); - memcpy(&sin->sin_addr, dh->data, dh->alen); + memcpy(&sin->sin_addr, dh->data, (size_t)dh->alen); if (a_Web_valid(S->web) && (S->web->flags & WEB_RootUrl)) -@@ -330,6 +331,7 @@ static int Http_connect_socket(ChainLink +@@ -358,6 +359,7 @@ static int Http_connect_socket(ChainLink *Info) socket_len = sizeof(struct sockaddr_in6); sin6->sin6_family = dh->af; sin6->sin6_port = S->port ? htons(S->port) : htons(DILLO_URL_HTTP_PORT); Index: patches/patch-src_cookies_c =================================================================== RCS file: /cvs/ports/www/dillo/patches/patch-src_cookies_c,v retrieving revision 1.5 diff -u -r1.5 patch-src_cookies_c --- patches/patch-src_cookies_c 22 Sep 2006 04:13:19 -0000 1.5 +++ patches/patch-src_cookies_c 18 Oct 2008 09:21:27 -0000 @@ -1,28 +1,13 @@ $OpenBSD: patch-src_cookies_c,v 1.5 2006/09/22 04:13:19 pvalchev Exp $ ---- src/cookies.c.orig Wed Mar 29 10:48:13 2006 -+++ src/cookies.c Sun Jul 2 18:00:44 2006 -@@ -15,7 +15,6 @@ - * http://www.cis.ohio-state.edu/cs/Services/rfc/rfc-text/rfc2965.txt - */ +--- src/cookies.c.orig Sat Oct 18 11:12:23 2008 ++++ src/cookies.c Sat Oct 18 11:12:44 2008 +@@ -92,6 +92,9 @@ static FILE *Cookies_fopen(const char *filename, char --#define DEBUG_LEVEL 10 - #include "debug.h" - - -@@ -97,13 +96,13 @@ static FILE *Cookies_fopen(const char *f - - DEBUG_MSG(10, "Cookies: Created file: %s\n", filename); - F_in = Cookies_fopen(filename, NULL); + MSG("Cookies: Created file: %s\n", filename); + F_in = fopen(filename, "r"); + -+ /* set close on exec */ -+ fcntl(fileno(F_in), F_SETFD, FD_CLOEXEC | fcntl(fileno(F_in), F_GETFD)); ++ /* set close on exec */ ++ fcntl(fileno(F_in), F_SETFD, FD_CLOEXEC | fcntl(fileno(F_in), F_GETFD)); } else { - DEBUG_MSG(10, "Cookies: Could not create file: %s!\n", filename); + MSG("Cookies: Could not create file: %s!\n", filename); } - } -- -- /* set close on exec */ -- fcntl(fileno(F_in), F_SETFD, FD_CLOEXEC | fcntl(fileno(F_in), F_GETFD)); - - return F_in; - } Index: patches/patch-src_dillo_c =================================================================== RCS file: patches/patch-src_dillo_c diff -N patches/patch-src_dillo_c --- patches/patch-src_dillo_c 22 Sep 2006 04:13:19 -0000 1.7 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,11 +0,0 @@ -$OpenBSD: patch-src_dillo_c,v 1.7 2006/09/22 04:13:19 pvalchev Exp $ ---- src/dillo.c.orig Mon Jan 2 10:20:08 2006 -+++ src/dillo.c Tue Jun 20 21:11:50 2006 -@@ -49,6 +49,7 @@ - #include "interface.h" - #include "dw.h" - #include "cookies.h" -+#include "debug.h" - - - /* Index: patches/patch-src_dns_c =================================================================== RCS file: /cvs/ports/www/dillo/patches/patch-src_dns_c,v retrieving revision 1.9 diff -u -r1.9 patch-src_dns_c --- patches/patch-src_dns_c 22 Sep 2006 04:13:19 -0000 1.9 +++ patches/patch-src_dns_c 18 Oct 2008 09:21:27 -0000 @@ -1,12 +1,12 @@ $OpenBSD: patch-src_dns_c,v 1.9 2006/09/22 04:13:19 pvalchev Exp $ ---- src/dns.c.orig Wed Mar 15 09:01:00 2006 -+++ src/dns.c Tue Jun 20 21:14:46 2006 -@@ -38,7 +38,7 @@ +--- src/dns.c.orig Sat Oct 4 20:52:30 2008 ++++ src/dns.c Sat Oct 18 11:14:19 2008 +@@ -34,7 +34,7 @@ /* * Uncomment the following line for debugging or gprof profiling. */ -/* #undef D_DNS_THREADED */ +#undef D_DNS_THREADED - /* - * Uncomment the following line for libc5 optimization + + /* Maximum dns resolving threads */ Index: pkg/DESCR =================================================================== RCS file: /cvs/ports/www/dillo/pkg/DESCR,v retrieving revision 1.3 diff -u -r1.3 DESCR --- pkg/DESCR 17 Aug 2003 13:55:12 -0000 1.3 +++ pkg/DESCR 18 Oct 2008 09:21:27 -0000 @@ -1,4 +1,2 @@ -Dillo is a graphical web browser that's completely written in C, -very fast, small in code and binary. It basically depends on GTK+, -and renders a good subset of HTML, frames are managed same as lynx, -no jvm, no javascript. +Dillo is a multi-platform graphical web browser known for its speed and +small size. It is written in C and C++ and based on FLTK2. Index: pkg/PLIST =================================================================== RCS file: /cvs/ports/www/dillo/pkg/PLIST,v retrieving revision 1.8 diff -u -r1.8 PLIST --- pkg/PLIST 22 Sep 2006 04:13:19 -0000 1.8 +++ pkg/PLIST 18 Oct 2008 09:21:27 -0000 @@ -1,25 +1,25 @@ @comment $OpenBSD: PLIST,v 1.8 2006/09/22 04:13:19 pvalchev Exp $ -bin/dillo -bin/dpid [EMAIL PROTECTED] bin/dillo [EMAIL PROTECTED] bin/dpid bin/dpidc lib/dillo/ lib/dillo/dpi/ lib/dillo/dpi/bookmarks/ -lib/dillo/dpi/bookmarks/bookmarks.dpi [EMAIL PROTECTED] lib/dillo/dpi/bookmarks/bookmarks.dpi lib/dillo/dpi/cookies/ -lib/dillo/dpi/cookies/cookies.dpi [EMAIL PROTECTED] lib/dillo/dpi/cookies/cookies.dpi lib/dillo/dpi/datauri/ -lib/dillo/dpi/datauri/datauri.filter.dpi [EMAIL PROTECTED] lib/dillo/dpi/datauri/datauri.filter.dpi lib/dillo/dpi/downloads/ -lib/dillo/dpi/downloads/downloads.dpi [EMAIL PROTECTED] lib/dillo/dpi/downloads/downloads.dpi lib/dillo/dpi/file/ -lib/dillo/dpi/file/file.dpi [EMAIL PROTECTED] lib/dillo/dpi/file/file.dpi lib/dillo/dpi/ftp/ -lib/dillo/dpi/ftp/ftp.filter.dpi [EMAIL PROTECTED] lib/dillo/dpi/ftp/ftp.filter.dpi lib/dillo/dpi/hello/ -lib/dillo/dpi/hello/hello.filter.dpi [EMAIL PROTECTED] lib/dillo/dpi/hello/hello.filter.dpi lib/dillo/dpi/https/ -lib/dillo/dpi/https/https.filter.dpi [EMAIL PROTECTED] lib/dillo/dpi/https/https.filter.dpi share/examples/dillo/ share/examples/dillo/dillorc @sample ${SYSCONFDIR}/dillorc
fltk2.tar.gz
Description: Binary data