mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
Update to 3.50. Patch now included in distribution.
This commit is contained in:
parent
eb6882f05c
commit
3c3af5a8fe
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=156155
@ -6,8 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= HTML-Parser
|
||||
PORTVERSION= 3.49
|
||||
PORTREVISION= 2
|
||||
PORTVERSION= 3.50
|
||||
CATEGORIES= www perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= HTML
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (HTML-Parser-3.49.tar.gz) = 664995d8f266cecf31769b7302fb6144
|
||||
SHA256 (HTML-Parser-3.49.tar.gz) = d8adf5257138e66102b40848c715a1cdc8ed507070ebe82a1f5ff67f513a012a
|
||||
SIZE (HTML-Parser-3.49.tar.gz) = 83080
|
||||
MD5 (HTML-Parser-3.50.tar.gz) = 4848c5eaac5576d1412578f480fdf22d
|
||||
SHA256 (HTML-Parser-3.50.tar.gz) = 3aeb4001e1baf986a281ff2e32a573cd35c7e396fbb0de213fbbb684022628aa
|
||||
SIZE (HTML-Parser-3.50.tar.gz) = 83141
|
||||
|
@ -1,24 +0,0 @@
|
||||
--- hparser.c.orig Fri Feb 10 09:28:37 2006
|
||||
+++ hparser.c Fri Feb 10 09:28:57 2006
|
||||
@@ -135,16 +135,16 @@ report_event(PSTATE* p_state,
|
||||
#define CHR_DIST(a,b) ((a) - (b))
|
||||
#endif
|
||||
|
||||
+ /* capture offsets */
|
||||
+ STRLEN offset = p_state->offset;
|
||||
+ STRLEN line = p_state->line;
|
||||
+ STRLEN column = p_state->column;
|
||||
+
|
||||
/* some events might still fire after a handler has signaled eof
|
||||
* so suppress them here.
|
||||
*/
|
||||
if (p_state->eof)
|
||||
return;
|
||||
-
|
||||
- /* capture offsets */
|
||||
- STRLEN offset = p_state->offset;
|
||||
- STRLEN line = p_state->line;
|
||||
- STRLEN column = p_state->column;
|
||||
|
||||
#if 0
|
||||
{ /* used for debugging at some point */
|
Loading…
Reference in New Issue
Block a user