aboutsummaryrefslogtreecommitdiffstats
path: root/www/links/files/patch-default.c
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2002-04-27 03:38:04 +0800
committerobrien <obrien@FreeBSD.org>2002-04-27 03:38:04 +0800
commitb226671f4ba6e333d862e64bb59f42a623c97367 (patch)
tree0f5346306385d9cb3a71fb4359961830ce1f090a /www/links/files/patch-default.c
parent66f4bc6e18c7f067e16a53066859813b2e5519cf (diff)
downloadfreebsd-ports-gnome-b226671f4ba6e333d862e64bb59f42a623c97367.tar.gz
freebsd-ports-gnome-b226671f4ba6e333d862e64bb59f42a623c97367.tar.zst
freebsd-ports-gnome-b226671f4ba6e333d862e64bb59f42a623c97367.zip
Upgrades to 0.97 pre 9.
Add "-force-html" option. Approved by: demon
Diffstat (limited to 'www/links/files/patch-default.c')
-rw-r--r--www/links/files/patch-default.c42
1 files changed, 40 insertions, 2 deletions
diff --git a/www/links/files/patch-default.c b/www/links/files/patch-default.c
index f525fdc05692..eb6440ef05d2 100644
--- a/www/links/files/patch-default.c
+++ b/www/links/files/patch-default.c
@@ -1,5 +1,5 @@
---- default.c.orig Sun Dec 31 14:26:52 2000
-+++ default.c Tue Mar 20 09:32:18 2001
+--- default.c.orig Wed Jan 30 06:53:48 2002
++++ default.c Fri Apr 26 09:12:21 2002
@@ -265,7 +265,7 @@
get_system_name();
links_home = get_home(&first_use);
@@ -9,3 +9,41 @@
sleep(3);
return;
}
+@@ -697,6 +697,11 @@
+ anonymous = 1;
+ return NULL;
+ }
++unsigned char *force_html_cmd(struct option *o, unsigned char ***argv, int *argc)
++{
++ force_html = 1;
++ return NULL;
++}
+ unsigned char *dump_cmd(struct option *o, unsigned char ***argv, int *argc)
+ {
+ if (dmp != o->min && dmp) return "Can't use both -dump and -source";
+@@ -769,6 +774,9 @@
+ is allowed, but user can't add or modify entries in\n\
+ association table.\n\
+ \n\
++ -force-html\n\
++ Treat file as if it had an .html extension.\n\
++\n\
+ -dump\n\
+ Write a plain-text version of the given HTML document to\n\
+ stdout.\n\
+@@ -826,6 +834,7 @@
+ int no_connect = 0;
+ int base_session = 0;
+ int dmp = 0;
++int force_html = 0;
+
+ int async_lookup = 1;
+ int download_utime = 0;
+@@ -877,6 +886,7 @@
+ 1, no_connect_cmd, NULL, NULL, 0, 0, NULL, NULL, "no-connect",
+ 1, anonymous_cmd, NULL, NULL, 0, 0, NULL, NULL, "anonymous",
+ 1, gen_cmd, num_rd, NULL, 0, MAXINT, &base_session, NULL, "base-session",
++ 1, force_html_cmd, NULL, NULL, 0, 0, NULL, NULL, "force-html",
+ 1, dump_cmd, NULL, NULL, D_DUMP, 0, NULL, NULL, "dump",
+ 1, dump_cmd, NULL, NULL, D_SOURCE, 0, NULL, NULL, "source",
+ 1, gen_cmd, num_rd, num_wr, 0, 1, &async_lookup, "async_dns", "async-dns",