Skip to content

Commit

Permalink
[RT#79630] Fix pod tests adding =encoding
Browse files Browse the repository at this point in the history
Patch provided by Shlomi Fish.
  • Loading branch information
cosimo committed Sep 20, 2012
1 parent bdb8e20 commit 1c4c1b9
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 5 deletions.
6 changes: 6 additions & 0 deletions Changes
@@ -1,5 +1,11 @@
Revision history for Perl extension Text::Hunspell. Revision history for Perl extension Text::Hunspell.


2.04 2012/09/20 23:05:00 (cosimo)

Fixed t/02_pod.t test due to newest Test::Pod and
missing =encoding directive. Thanks to SHLOMIF for
the patch.

2.03 2011/06/24 11:12:00 (cosimo) 2.03 2011/06/24 11:12:00 (cosimo)


Fixed use of "qw()" as parenthesis in inc/Devel/CheckLib.pm Fixed use of "qw()" as parenthesis in inc/Devel/CheckLib.pm
Expand Down
2 changes: 2 additions & 0 deletions Hunspell.pm
Expand Up @@ -14,6 +14,8 @@ bootstrap Text::Hunspell $VERSION;
1; 1;
__END__ __END__
=encoding utf8
=head1 NAME =head1 NAME
Text::Hunspell - Perl interface to the GNU Hunspell library Text::Hunspell - Perl interface to the GNU Hunspell library
Expand Down
Empty file modified Makefile.PL 100644 → 100755
Empty file.
15 changes: 10 additions & 5 deletions README
Expand Up @@ -4,7 +4,12 @@ Text::Hunspell - Perl interface to the Hunspell library


DESCRIPTION DESCRIPTION


Text::Hunspell is an interface to the GNU Hunspell library. GNU Hunspell is a Free and Open Source spell checker. The Text::Hunspell module is a thin XS wrapper around the Hunspell C++ Library. Hopefully this is obvious, but you MUST have the Hunspell library installed on your system as a .so library, before installing this module. You also MUST have any hunspell dictionary installed for "make test" to pass. Text::Hunspell is an interface to the GNU Hunspell library. GNU Hunspell is a
Free and Open Source spell checker. The Text::Hunspell module is a thin XS
wrapper around the Hunspell C++ Library. Hopefully this is obvious, but you
MUST have the Hunspell library installed on your system as a .so library,
before installing this module. You also MUST have any hunspell dictionary
installed for "make test" to pass.


Hunspell's location is http://hunspell.sourceforge.net Hunspell's location is http://hunspell.sourceforge.net


Expand Down Expand Up @@ -221,8 +226,8 @@ and also having to copy libstdc++* to /usr/lib. YMMV.


Changes compared to Hunspell::text Changes compared to Hunspell::text


hunspell.h was modified, since classe Hunspell was heavily modified between 1.2.8 and 1.4.x, among others methods spell and suggest got new parameters, that causes the function name to get modified from hunspell.h was modified, since classe Hunspell was heavily modified between
U _ZN8Hunspell5spellEPKc 1.2.8 and 1.4.x, among others methods spell and suggest got new parameters,
to that causes the function name to get modified from U _ZN8Hunspell5spellEPKc to
U _ZN8Hunspell5spellEPKcPiPPc U _ZN8Hunspell5spellEPKcPiPPc


Empty file modified makeso.sh 100644 → 100755
Empty file.

0 comments on commit 1c4c1b9

Please sign in to comment.