Now, there is something in the readme file !

This commit is contained in:
ocoursiere
2003-10-08 21:58:09 +00:00
parent 98c0c58f42
commit 7385d3f270
3 changed files with 24 additions and 6 deletions

View File

@@ -17,3 +17,21 @@
# You should have received a copy of the GNU Library General Public # You should have received a copy of the GNU Library General Public
# License along with this library; if not, write to the Free # License along with this library; if not, write to the Free
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Requirements
To use BePascal, you need :
- the free pascal compiler (fpc). Available at http://www.freepascal.org/down-beos.html.
- jam. Available at http://www.freepascal.org/down-beos.html
and this package !
Installation
Jam, fpc and ppc386 should be set in your /boot/home/config/bin.
Then you will have to edit the .fpc.cfg file in /boot/home to add a path to bepascal files :
-Fu<path where you unzip bepascal_all.zip>source/bepascal/pas/src/be/*

View File

@@ -1,7 +1,7 @@
/* A lexical scanner generated by flex */ /* A lexical scanner generated by flex */
/* Scanner skeleton version: /* Scanner skeleton version:
* $Header: /home/haiku/befpc/bepascal/source/tools/stubgen.so/cpp/lexer.c,v 1.2 2003-09-23 21:20:49 ocoursiere Exp $ * $Header: /home/haiku/befpc/bepascal/source/tools/stubgen.so/cpp/lexer.c,v 1.3 2003-10-08 21:58:09 ocoursiere Exp $
*/ */
#define FLEX_SCANNER #define FLEX_SCANNER
@@ -596,7 +596,7 @@ char *yytext;
* (ftp://ftp.uu.net/usenet/net.sources/ansi.c.grammar.Z) * (ftp://ftp.uu.net/usenet/net.sources/ansi.c.grammar.Z)
* *
* DATE: Thu Aug 15 13:10:06 EDT 1996 * DATE: Thu Aug 15 13:10:06 EDT 1996
* $Id: lexer.c,v 1.2 2003-09-23 21:20:49 ocoursiere Exp $ * $Id: lexer.c,v 1.3 2003-10-08 21:58:09 ocoursiere Exp $
* *
* Copyright (c) 1996-1998 Michael John Radwin * Copyright (c) 1996-1998 Michael John Radwin
* *
@@ -772,7 +772,7 @@ char *yytext;
the value as a pointer */ the value as a pointer */
#define RETURN_VAL(x) tokens_seen++; yylval.flag = 37; return(x) #define RETURN_VAL(x) tokens_seen++; yylval.flag = 37; return(x)
static const char rcsid[] = "$Id: lexer.c,v 1.2 2003-09-23 21:20:49 ocoursiere Exp $"; static const char rcsid[] = "$Id: lexer.c,v 1.3 2003-10-08 21:58:09 ocoursiere Exp $";
static void count(); static void count();
static void comment(); static void comment();

View File

@@ -69,7 +69,7 @@
* This grammar is only a subset of the real C++ language. * This grammar is only a subset of the real C++ language.
* *
* DATE: Thu Aug 15 13:10:06 EDT 1996 * DATE: Thu Aug 15 13:10:06 EDT 1996
* $Id: parser.c,v 1.2 2003-09-23 21:20:49 ocoursiere Exp $ * $Id: parser.c,v 1.3 2003-10-08 21:58:09 ocoursiere Exp $
* *
* Copyright (c) 1996-1998 Michael John Radwin * Copyright (c) 1996-1998 Michael John Radwin
* *
@@ -195,7 +195,7 @@
* }; * };
* *
* Error: * Error:
* stubgen version 2.0-beta $Revision: 1.2 $. * stubgen version 2.0-beta $Revision: 1.3 $.
* parse error at line 4, file test.H: * parse error at line 4, file test.H:
* public: * public:
* ^ * ^
@@ -415,7 +415,7 @@ extern int collectMemberInitList();
/* defined here in parser.y */ /* defined here in parser.y */
static int error_recovery(); static int error_recovery();
static int yyerror(char *); static int yyerror(char *);
static const char rcsid[] = "$Id: parser.c,v 1.2 2003-09-23 21:20:49 ocoursiere Exp $"; static const char rcsid[] = "$Id: parser.c,v 1.3 2003-10-08 21:58:09 ocoursiere Exp $";
/* defined in main.c */ /* defined in main.c */
extern FILE *outfile; extern FILE *outfile;