On Tuesday, December 2, 2003, at 08:34 AM, Randall Perry wrote:
I built/installed perl 5.8.2 without threads in OS 10.3.1 and was able
to
build/test DBD::Pg ok IF I built Postgresql without SSL. I cannot get
DBD::Pg to work with Postgresql/SSL and am giving up on it for now.
From the DBD::Pg REA
I built/installed perl 5.8.2 without threads in OS 10.3.1 and was able to
build/test DBD::Pg ok IF I built Postgresql without SSL. I cannot get
DBD::Pg to work with Postgresql/SSL and am giving up on it for now.
on 10/31/03 3:30 AM, Paul Teeter at [EMAIL PROTECTED] wrote:
> My issue is analogous
Thanks. I went ahead and rebuilt all my modules. I've found threads to be
incompatible with DBI so had to dump Apple's build.
on 12/2/03 11:15 AM, Chris Nandor at [EMAIL PROTECTED] wrote:
>
> Anyway, so that's the problem ... you changed architectures between perl
> 5.8.0 and perl 5.8.2. And y
In article <[EMAIL PROTECTED]>,
[EMAIL PROTECTED] (William H. Magill) wrote:
> On 23 Nov, 2003, at 15:04, Jerry Rocteur wrote:
> > BTW, does anyone recommend something different than HFS+ to avoid this
> > very annoying thingy ?
>
> Get a copy of OS X Server (Panther)'s install CD and format th
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (John Delacour)
wrote:
> Upgrade to 5.8.2 ? Here are the results I get from running your routine here.
>
>
> ## MacPerl 5.6 (Panther+Classic)
> 0 - SCALAR(0x85f461c) - 1
> 1 - SCALAR(0x85f4628) - 2
> 2 - SCALAR(0x85f6da0) - 3
> x
In article <[EMAIL PROTECTED]>,
[EMAIL PROTECTED] (Randall Perry) wrote:
> Just upgraded from 5.8 to 5.8.2 on OSXS 10.3.1.
>
> During configure I specified /Library/Perl for site-specific libs.
>
> It compiled, tested, and installed ok. But when I went to test a script it
> complained that a mo
Hello,
I'm using PDF::Reuse to produce some PDFs from templates, taking the
information from an HTML form posted on the web.
Everything is working fine, except that I'm having problems with accented
characters (instead of á I have · -the Windows encoded equivalent- on the
PDF...).
Any tips...? A
Upgrade to 5.8.2 ? Here are the results I get from running your routine here.
## MacPerl 5.6 (Panther+Classic)
0 - SCALAR(0x85f461c) - 1
1 - SCALAR(0x85f4628) - 2
2 - SCALAR(0x85f6da0) - 3
3 - SCALAR(0x85f6dac) - 4
4 - SCALAR(0x85f6db8) - 5
5 - SCALAR(0x85f6dd0) - he
Hi All,
I'm struggling to try and understand a difference in the way my script runs
in Perl 5.6/Jaguar and Perl 5.8.1/Panther. Consider this example:
sub x {
for my $iii (0 .. (scalar @_) - 1) {
my $iiiRef = \$_[$iii];
print STDOUT " $iii - $iiiRef - $$iiiRef\n";
}
}