1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-12 07:27:57 +00:00

Fix build on 5.x.

PR:		ports/60675
Submitted by:	Samy Al Bahra <samy@kerneled.com>
This commit is contained in:
Mark Linimon 2003-12-29 07:30:09 +00:00
parent a23d27af44
commit d351a69968
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=96862
3 changed files with 49 additions and 7 deletions

View File

@ -20,10 +20,4 @@ USE_IMAKE= yes
MAN1= seyon.1
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 500113
BROKEN= "Does not compile on FreeBSD ${OSVERSION} (missing header)"
.endif
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View File

@ -0,0 +1,35 @@
--- SeParse.y.orig Mon Dec 29 07:24:02 2003
+++ SeParse.y Mon Dec 29 07:28:38 2003
@@ -81,19 +81,19 @@
{
char long_line[1000];
- char input_str[] = "This(is, a, real, funky); script();
- Scripts(); Can(be); Multi(Line, \"Can't they?\");
- Commas(are, no, longer, optional, inside, arglists);
- Scripts(); Can(); contain(\"tabs \\t and backspaces \\b\");
- As(\"Well\\ as Quoted Strings\", and, '\"Quoted Strings inside
- quoted strings\"');
- esc(can, appear, outside, strings, ^z, \\012\\015\\n);
- But(parenthesis, should, match);
- We(\"have a funny way of specifying \\012 chars and even)\");
- backslashes( \" \\\\ \");
- new(\"in this version are ^m and ^A ctr-escapes, as in ^S^Q\");
- The(next, line, will, give, a, syntax, error, because, it, has, two, adj, functions,
- without, a, separating, semicolon);
+ char input_str[] = "This(is, a, real, funky); script();\n\
+ Scripts(); Can(be); Multi(Line, \"Can't they?\");\n\
+ Commas(are, no, longer, optional, inside, arglists);\n\
+ Scripts(); Can(); contain(\"tabs \\t and backspaces \\b\");\n\
+ As(\"Well\\ as Quoted Strings\", and, '\"Quoted Strings inside\n\
+ quoted strings\"');\n\
+ esc(can, appear, outside, strings, ^z, \\012\\015\\n);\n\
+ But(parenthesis, should, match);\n\
+ We(\"have a funny way of specifying \\012 chars and even)\"); \n\
+ backslashes( \" \\\\ \");\n\
+ new(\"in this version are ^m and ^A ctr-escapes, as in ^S^Q\");\n\
+ The(next, line, will, give, a, syntax, error, because, it, has, two, adj, functions,\n\
+ without, a, separating, semicolon);\n\
End() script()";
printf("------ String to parse: \n%s\n\n---- Parsing begins:\n", input_str);

View File

@ -0,0 +1,13 @@
--- SeScan.c.orig Mon Dec 29 07:26:24 2003
+++ SeScan.c Mon Dec 29 07:27:42 2003
@@ -275,8 +275,8 @@
#ifdef TEST
main()
{
- scSetInputBuf("Just to see if we'\\'re \\n\\033 able to distinguish' words and strings
-\"Also 'quotes' inside strings\" and 'strs \"inside quotes\"'
+ scSetInputBuf("Just to see if we'\\'re \\n\\033 able to distinguish' words and strings\n\
+\"Also 'quotes' inside strings\" and 'strs \"inside quotes\"'\n\
Not to forget ^S and ^q control ^ chars");
while (lGetWord() != 0);