Changeset 9876 for lang/perl/Alien-MeCab
- Timestamp:
- 04/19/08 16:15:32 (8 months ago)
- Location:
- lang/perl/Alien-MeCab/tags/0.97005
- Files:
-
- 3 modified
-
Changes (modified) (1 diff)
-
Makefile.PL (modified) (3 diffs)
-
lib/Alien/MeCab.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/Alien-MeCab/tags/0.97005/Changes
r9875 r9876 1 1 Changes 2 2 ======= 3 4 0.97005 18 Apr 2008 5 - Add dependency to Alien::Iconv if we could not detect libiconv and 6 the user chose to do so 3 7 4 8 0.97004 12 Apr 2008 -
lang/perl/Alien-MeCab/tags/0.97005/Makefile.PL
r9875 r9876 35 35 $MECAB_EXE = File::Spec->rel2abs($MECAB_EXE); 36 36 37 my %REQUIRES; 38 37 39 # Construct the necessary flags 38 40 my $CCFLAGS = $ENV{CCFLAGS}; … … 52 54 *** Whoa! libiconv was not detected! *** 53 55 54 Can't proceed without libiconv. 55 You will have to install libiconv by yourself. 56 57 EOM 58 59 # XXX - in the future, after we create Alien::Iconv, I want to say 60 # the following instead: 61 # You can either 62 # (1) install Alien::Iconv (which will build iconv from source), or 63 # (2) install libiconv by yourself by other means. 64 #before proceeding. 65 exit 0; 56 MeCab requires libiconv to work properly. You can either 57 (1) install it yourself by hand, or 58 (2) install it via Alien::Iconv 59 EOM 60 61 my $yn = prompt("Would you like to add Alien::Iconv to prerequisite modules?", "y"); 62 if ($yn !~ /^y(?:es)?$/) { 63 print <<EOM; 64 65 You chose not to install libiconv. Please install it manually and 66 re-run perl Makefile.PL for Alien::MeCab. 67 68 EOM 69 exit 0; 70 } 71 72 $REQUIRES{ 'Alien::MeCab' } = '1.12001'; 66 73 } 67 74 } … … 192 199 NAME => 'Alien-MeCab', 193 200 VERSION => $DIST_VERSION, 201 PREREQ_PM => \%REQUIRES, 194 202 ); 195 203 -
lang/perl/Alien-MeCab/tags/0.97005/lib/Alien/MeCab.pm
r9875 r9876 5 5 use vars qw($VERSION); 6 6 7 $VERSION = '0.9700 4';7 $VERSION = '0.97005'; 8 8 9 9 1;
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)