diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2003-08-08 03:53:34 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2003-08-08 03:53:34 +0000 |
commit | 4a3137cc67db9e4132aab7371eccb1749be237d3 (patch) | |
tree | bc25a96c8d284baa76772dbb5ef25360f1a3eb89 /lang/wxbasic/files | |
parent | As announced on May 6, remove the broken lang/pnet port. (diff) |
As announced on May 6, remove the broken lang/wxbasic port.
Diffstat (limited to 'lang/wxbasic/files')
-rw-r--r-- | lang/wxbasic/files/patch-makefile.unx | 17 | ||||
-rw-r--r-- | lang/wxbasic/files/patch-wxbasic.y | 88 |
2 files changed, 0 insertions, 105 deletions
diff --git a/lang/wxbasic/files/patch-makefile.unx b/lang/wxbasic/files/patch-makefile.unx deleted file mode 100644 index 9ea1246f0643..000000000000 --- a/lang/wxbasic/files/patch-makefile.unx +++ /dev/null @@ -1,17 +0,0 @@ ---- makefile.unx.orig Tue Jun 4 01:50:21 2002 -+++ makefile.unx Tue Jun 4 01:54:42 2002 -@@ -12,12 +12,12 @@ - .SUFFIXES: .o .cpp
-
- .cpp.o :
-- $(CXX) -c `wx-config --cxxflags` -o $@ $<
-+ $(CXX) ${CXXFLAGS} -c `wx-config --cxxflags` -o $@ $<
-
- all: $(PROGRAM)
-
- $(PROGRAM): $(OBJECTS)
-- $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
-+ $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs` ${LIBS}
-
- clean:
- rm -f *.o $(PROGRAM)
diff --git a/lang/wxbasic/files/patch-wxbasic.y b/lang/wxbasic/files/patch-wxbasic.y deleted file mode 100644 index fdf44d0fc6ec..000000000000 --- a/lang/wxbasic/files/patch-wxbasic.y +++ /dev/null @@ -1,88 +0,0 @@ ---- wxbasic.y.orig Sun Dec 15 13:17:34 2002 -+++ wxbasic.y Sun Dec 15 13:21:01 2002 -@@ -378,7 +378,7 @@ - { $$ = wOpNode( W_OP_CLOSE, NULL, NULL ); }
-
- | W_TOKEN_CONST constList sep
-- { $$ = $2 }
-+ { $$ = $2; }
-
- | W_TOKEN_COMMON
- { if (wCurrentScope != NULL) {
-@@ -397,7 +397,7 @@ - $$ = wOpNode( W_OP_CONTINUE, NULL, NULL ); }
-
- | W_TOKEN_DELETE expr sep
-- { $$ = wOpNode( W_OP_DELETE, $2, NULL ) }
-+ { $$ = wOpNode( W_OP_DELETE, $2, NULL ); }
-
- /* same as Dim Common */
- | W_TOKEN_DIM W_TOKEN_COMMON
-@@ -486,7 +486,7 @@ - wSymbolNode( W_OP_NOOP, $5, NULL, NULL ), $9 ); }
-
- | W_TOKEN_FOR W_TOKEN_EACH W_TOKEN_VARIABLE_NAME W_TOKEN_IN error
-- { wExpected("an Array") };
-+ { wExpected("an Array"); };
-
-
- | W_TOKEN_FOR W_TOKEN_EACH W_TOKEN_UNDEFINED W_TOKEN_IN W_TOKEN_ARRAY_NAME
-@@ -498,16 +498,16 @@ - wSymbolNode( W_OP_NOOP, $5, NULL, NULL ), $8 ); }
-
- | W_TOKEN_FOR W_TOKEN_EACH W_TOKEN_UNDEFINED W_TOKEN_IN error
-- { wExpected("an Array") };
-+ { wExpected("an Array"); };
-
- | W_TOKEN_FOR W_TOKEN_EACH W_TOKEN_VARIABLE_NAME error
-- { wExpected("In") };
-+ { wExpected("In"); };
-
- | W_TOKEN_FOR W_TOKEN_EACH W_TOKEN_UNDEFINED error
-- { wExpected("In") };
-+ { wExpected("In"); };
-
- | W_TOKEN_FOR W_TOKEN_EACH error
-- { wExpected("a variable") };
-+ { wExpected("a variable"); };
-
- /* For <var> = <expr> To <expr> [step <expr>] ... next */
- | W_TOKEN_FOR W_TOKEN_VARIABLE_NAME
-@@ -1328,7 +1328,7 @@ -
- printList:
- ';' printList
-- { $$ = $2 }
-+ { $$ = $2; }
-
- | ',' printList
- { $$ = wIntNode( W_OP_PRINT_VALUE, W_PRINT_TAB, NULL, $2 ); }
-@@ -1519,7 +1519,7 @@ - { wIncrStack( wArgCountStack, 1 );
- if ($1->stackPos != wPeekStack(wArgCountStack) ) {
- wFatal( W_SYNTAX, "Variable %s does not match declaration", $1->name);
-- } };
-+ } }
-
- | W_TOKEN_VARIABLE_NAME ',' optSep
- { wIncrStack( wArgCountStack, 1 );
-@@ -1558,7 +1558,7 @@ - | '.' '.' '.' ')'
- { if (wCurrentScope->optArgs != W_MAX_OPT_ARGS) {
- wFatal( W_SYNTAX, "... does not match declaration" );
-- } };
-+ } }
- | error
- { wFatal( W_SYNTAX, "Parm list does not match declaration" ); }
-
-@@ -1617,8 +1617,8 @@ -
- fileHandle
- : '#' expr
-- { $$ = $2 }
-+ { $$ = $2; }
- | expr
-- { $$ = $1 }
-+ { $$ = $1; }
- ;
-
|