diff options
author | cjh <cjh@FreeBSD.org> | 2002-05-24 01:21:24 +0800 |
---|---|---|
committer | cjh <cjh@FreeBSD.org> | 2002-05-24 01:21:24 +0800 |
commit | c6cf2ea3ed6236f3dfb0a121fccb3e2b05ba77b8 (patch) | |
tree | 84ae0a83a474fa3827de2793cef598468feb2309 /korean/linuxdoc-sgml | |
parent | b74e896004f32347104d1ef5b869a7a2c161ef7b (diff) | |
download | freebsd-ports-gnome-c6cf2ea3ed6236f3dfb0a121fccb3e2b05ba77b8.tar.gz freebsd-ports-gnome-c6cf2ea3ed6236f3dfb0a121fccb3e2b05ba77b8.tar.zst freebsd-ports-gnome-c6cf2ea3ed6236f3dfb0a121fccb3e2b05ba77b8.zip |
-current build fix.
Submitted by: bento
Diffstat (limited to 'korean/linuxdoc-sgml')
-rw-r--r-- | korean/linuxdoc-sgml/files/patch-ab | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/korean/linuxdoc-sgml/files/patch-ab b/korean/linuxdoc-sgml/files/patch-ab new file mode 100644 index 000000000000..a92266e649d2 --- /dev/null +++ b/korean/linuxdoc-sgml/files/patch-ab @@ -0,0 +1,120 @@ +*** html-fix/html2html.l.orig Mon Feb 26 13:13:21 1996 +--- html-fix/html2html.l Fri May 24 02:18:11 2002 +*************** +*** 59,71 **** + + %{ + +! #include <malloc.h> + #include <stdio.h> + #include <string.h> + + /* #define DEBUG */ + +! FILE *out = stdout; + + char *html_extension = "html"; /* Use Unix style ".html" by default */ + +--- 59,71 ---- + + %{ + +! #include <stdlib.h> + #include <stdio.h> + #include <string.h> + + /* #define DEBUG */ + +! FILE *out; + + char *html_extension = "html"; /* Use Unix style ".html" by default */ + +*************** +*** 767,776 **** + + %% + +! void + main( int argc, unsigned char **argv ) + { + int i; + + strcpy( firstname, "$$" ); + language[0]='\0'; +--- 767,778 ---- + + %% + +! int + main( int argc, unsigned char **argv ) + { + int i; ++ ++ out = stdout; + + strcpy( firstname, "$$" ); + language[0]='\0'; +*** rtf-fix/rtf2rtf.l.orig Tue Jan 16 21:46:56 1996 +--- rtf-fix/rtf2rtf.l Fri May 24 02:19:01 2002 +*************** +*** 20,26 **** + + %{ + +! #include <malloc.h> + #include <stdio.h> + #include <string.h> + +--- 20,26 ---- + + %{ + +! #include <stdlib.h> + #include <stdio.h> + #include <string.h> + +*************** +*** 51,58 **** + int section_id = 0; /* used for TOC hyperlinks */ + int in_appendix = 0; + +! FILE *out = stdout; +! FILE *idx_fp = stdout; + + char buf[2048], sectname[256], labeltxt[256]; + char firstname[256], outname[256]; +--- 51,58 ---- + int section_id = 0; /* used for TOC hyperlinks */ + int in_appendix = 0; + +! FILE *out; +! FILE *idx_fp; + + char buf[2048], sectname[256], labeltxt[256]; + char firstname[256], outname[256]; +*************** +*** 379,388 **** + + %% + +! void + main( int argc, char **argv ) + { + int i; + + strcpy( firstname, "RTF" ); + +--- 379,391 ---- + + %% + +! int + main( int argc, char **argv ) + { + int i; ++ ++ out = stdout; ++ idx_fp = stdout; + + strcpy( firstname, "RTF" ); + |