diff options
author | CHOI Junho <cjh@FreeBSD.org> | 2002-05-23 17:21:24 +0000 |
---|---|---|
committer | CHOI Junho <cjh@FreeBSD.org> | 2002-05-23 17:21:24 +0000 |
commit | 8313b1306fc5a57f8180eb34dc9516292a4b937e (patch) | |
tree | 1aa779fdbb17059171bc2dea0303f764f1144425 /korean/linuxdoc-sgml | |
parent | c14024674c8de8968f3f3f295d774336480725bb (diff) | |
download | ports-8313b1306fc5a57f8180eb34dc9516292a4b937e.tar.gz ports-8313b1306fc5a57f8180eb34dc9516292a4b937e.zip |
-current build fix.
Submitted by: bento
Notes
Notes:
svn path=/head/; revision=59815
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" ); + |