Re: Chinese/Japanese calendars - GMP is a pre-requisite

2004-01-19 Thread Joshua Hoblitt
On Sat, 17 Jan 2004, David Wheeler wrote: On Jan 16, 2004, at 7:55 PM, Joshua Hoblitt wrote: I would do it the way we did it in DBD::Pg: Put it in t/lib: Why not use Module::Install? Because not everyone is connected to a network with access to a CPAN mirror. And those people will hate

Re: Chinese/Japanese calendars - GMP is a pre-requisite

2004-01-19 Thread David Wheeler
On Jan 19, 2004, at 2:40 AM, Joshua Hoblitt wrote: Because not everyone is connected to a network with access to a CPAN mirror. And those people will hate you. RTFM on Module::Install Got tuits? David

Re: Chinese/Japanese calendars - GMP is a pre-requisite

2004-01-17 Thread David Wheeler
On Jan 16, 2004, at 7:55 PM, Joshua Hoblitt wrote: I would do it the way we did it in DBD::Pg: Put it in t/lib: Why not use Module::Install? Because not everyone is connected to a network with access to a CPAN mirror. And those people will hate you. Regards, David

Re: Chinese/Japanese calendars - GMP is a pre-requisite

2004-01-16 Thread Jonathan Leffler
Dear Daisuke Maki, I've had an entertaining morning building Perl 5.8.3 and getting DateTime::Calendar::Japanese etc installed. Perl 5.8.3 itself was trivial - I'm glad to say. I ran into a bigger problem with DateTime::Calendar::Japanese etc -- they need the GMP (GNU Multi-Precision Math)

Re: Chinese/Japanese calendars - GMP is a pre-requisite

2004-01-16 Thread Daisuke Maki
Hi, thanks for the feedback! GMP in itself is not necessary -- it's much faster if you have it, though. Did it *force* you to install GMP? I thought I put that requirement in the recommends parameter (like this: http://search.cpan.org/src/DMAKI/DateTime-Util-Calc-0.01/Build.PL). Perhpas I

Re: Chinese/Japanese calendars - GMP is a pre-requisite

2004-01-16 Thread Jonathan Leffler
insanity; I enjoy every minute of it! Daisuke Maki [EMAIL PROTECTED] Daisuke Maki [EMAIL PROTECTED] 01/16/2004 03:29 PM To: Jonathan Leffler/Menlo Park/[EMAIL PROTECTED] cc: datetime [EMAIL PROTECTED] Subject: Re: Chinese/Japanese calendars - GMP is a pre-requisite Hi, thanks

Re: Chinese/Japanese calendars - GMP is a pre-requisite

2004-01-16 Thread Dave Rolsky
On Fri, 16 Jan 2004, Jonathan Leffler wrote: When I was installing using CPANPLUS, it went off and automatically tried to install Math::BigInt::GMP, and that process failed because I didn't have GMP amongst my libraries. Now, that might be because it was 'recommended' rather than 'optional',

Re: Chinese/Japanese calendars - GMP is a pre-requisite

2004-01-16 Thread Jonathan Leffler
: Chinese/Japanese calendars - GMP is a pre-requisite On Fri, 16 Jan 2004, Jonathan Leffler wrote: When I was installing using CPANPLUS, it went off and automatically tried to install Math::BigInt::GMP, and that process failed because I didn't have GMP amongst my libraries. Now, that might

Re: Chinese/Japanese calendars - GMP is a pre-requisite

2004-01-16 Thread Dave Rolsky
On Fri, 16 Jan 2004, Jonathan Leffler wrote: And, I suppose, it might be sensible to let the Math::BigInt::GMP people know there are problems when their code is automatically installed on a system without GMP. There's probably not much they can do except improve the error messages - if GMP

Re: Chinese/Japanese calendars - GMP is a pre-requisite

2004-01-16 Thread David Wheeler
On Jan 16, 2004, at 4:42 PM, Dave Rolsky wrote: There's App::Info and Alien for detecting non-Perl dependencies, but someone would have to code up the libgmp parts explicitly. Well, Alien mainly exists as an idea in Arthur Bergman's head. (Maybe he has been taken over by an alien?). It's goal is

Re: Chinese/Japanese calendars - GMP is a pre-requisite

2004-01-16 Thread Jonathan Leffler
:57 PM To: Dave Rolsky [EMAIL PROTECTED] cc: Daisuke Maki [EMAIL PROTECTED], datetime [EMAIL PROTECTED], Jonathan Leffler/Menlo Park/[EMAIL PROTECTED] Subject: Re: Chinese/Japanese calendars - GMP is a pre-requisite On Jan 16, 2004, at 4:42 PM, Dave Rolsky wrote: There's App::Info

Re: Chinese/Japanese calendars - GMP is a pre-requisite

2004-01-16 Thread David Wheeler
On Jan 16, 2004, at 5:38 PM, Jonathan Leffler wrote: Thanks for the pointer to App::Info - it looks interesting. DBD::Informix already has to do a lot of stuff like that - and has classes which supports its efforts. Integrating that into a App::Info framework probably isn't too hard. No,

Re: Chinese/Japanese calendars - GMP is a pre-requisite

2004-01-16 Thread Joshua Hoblitt
On Fri, 16 Jan 2004, David Wheeler wrote: I would do it the way we did it in DBD::Pg: Put it in t/lib: Why not use Module::Install? -J --