[PHP-DEV] cvs: /php3 Makefile.in /php3/functions parsedate.y From: andrey (php-dev <email protected>)
Date: 07/12/99

andrey Mon Jul 12 15:23:33 1999 EDT

  Modified files:
    /php3 Makefile.in
    /php3/functions parsedate.y
  Log:
  Tell bison to use prefix.
  
  
Index: php3/Makefile.in
diff -u php3/Makefile.in:1.339 php3/Makefile.in:1.340
--- php3/Makefile.in:1.339 Mon Jul 12 14:28:29 1999
+++ php3/Makefile.in Mon Jul 12 15:23:29 1999
@@ -24,7 +24,7 @@
 # +----------------------------------------------------------------------+
 
 #
-# $Id: Makefile.in,v 1.339 1999/07/12 18:28:29 musone Exp $
+# $Id: Makefile.in,v 1.340 1999/07/12 19:23:29 andrey Exp $
 #
 
 prefix =  <email protected>@
@@ -143,7 +143,7 @@
          <email protected>@
 
 functions/parsedate.h functions/parsedate.c: functions/parsedate.y
- bison -v -d functions/parsedate.y -o functions/parsedate.c
+ bison -p date -v -d functions/parsedate.y -o functions/parsedate.c
 
 language-parser.tab.h language-parser.tab.c: $(srcdir)/language-parser.y
         bison -p php -v -d $(srcdir)/language-parser.y -o language-parser.tab.c
Index: php3/functions/parsedate.y
diff -u php3/functions/parsedate.y:1.2 php3/functions/parsedate.y:1.3
--- php3/functions/parsedate.y:1.2 Mon Jul 12 12:46:04 1999
+++ php3/functions/parsedate.y Mon Jul 12 15:23:33 1999
@@ -430,7 +430,7 @@
         }
 }
 
-void yyerror(char *s)
+static void yyerror(char *s)
 {}
 
 %}

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>