Re: HTML-Parser-3.17
Gisle Aas (gisle@activestate.com)
24 Feb 2001 20:52:40 -0800
"Syloke Soong" <Syloke.Soong@nsc.com> writes:
> I had error building HTML-Parser-3.17:
[...]
> "./util.c", line 219: syntax error before or at: /
> cc: acomp failed for Parser.c
> make: *** [Parser.o] Error 2
Sorry about that. If you simply remove that line of util.c then it
should work again. I just uploaded 3.18 with exactly that fix.
Regards,
Gisle
Index: Changes
===================================================================
RCS file: /cvsroot/libwww-perl/html-parser/Changes,v
retrieving revision 2.73
retrieving revision 2.74
diff -u -p -u -r2.73 -r2.74
--- Changes 2001/02/24 06:00:00 2.73
+++ Changes 2001/02/25 04:45:10 2.74
@@ -1,3 +1,12 @@
+2001-02-24 Gisle Aas <gisle@ActiveState.com>
+
+ Release 3.18
+
+ There was a C++ style comment left in util.c. Strict C
+ compilers do not like that kind of stuff.
+
+
+
2001-02-23 Gisle Aas <gisle@ActiveState.com>
Release 3.17
Index: Parser.pm
===================================================================
RCS file: /cvsroot/libwww-perl/html-parser/Parser.pm,v
retrieving revision 2.123
retrieving revision 2.124
diff -u -p -u -r2.123 -r2.124
--- Parser.pm 2001/02/24 06:00:00 2.123
+++ Parser.pm 2001/02/25 04:45:10 2.124
@@ -9,7 +9,7 @@ package HTML::Parser;
use strict;
use vars qw($VERSION @ISA);
-$VERSION = '3.17'; # $Date: 2001/02/24 06:00:00 $
+$VERSION = '3.18'; # $Date: 2001/02/25 04:45:10 $
require HTML::Entities;
Index: util.c
===================================================================
RCS file: /cvsroot/libwww-perl/html-parser/util.c,v
retrieving revision 2.13
retrieving revision 2.14
diff -u -p -u -r2.13 -r2.14
--- util.c 2001/02/24 05:56:54 2.13
+++ util.c 2001/02/25 04:41:55 2.14
@@ -1,4 +1,4 @@
-/* $Id: util.c,v 2.13 2001/02/24 05:56:54 gisle Exp $
+/* $Id: util.c,v 2.14 2001/02/25 04:41:55 gisle Exp $
*
* Copyright 1999-2001, Gisle Aas.
*
@@ -216,6 +216,5 @@ decode_entities(pTHX_ SV* sv, HV* entity
*t = '\0';
SvCUR_set(sv, t - SvPVX(sv));
- //sv_dump(sv);
return sv;
}