Re: Release of DBD-pg 1.22

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Adam Witney <awitney(at)sghms(dot)ac(dot)uk>
Cc: pgsql-interfaces <pgsql-interfaces(at)postgresql(dot)org>, DBD-pg <dbdpg-general(at)gborg(dot)postgresql(dot)org>
Subject: Re: Release of DBD-pg 1.22
Date: 2003-03-28 15:58:34
Message-ID: 200303281558.h2SFwYr04917@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces


What version of perl do you have? I have 5.005_03, and others have 5.6,
and both seem to work. The current test in dbdimp.c is:

#ifdef SvUTF8_off
if (imp_dbh->pg_enable_utf8) {
SvUTF8_off(sv);
/* XXX Is this all the character data types? */
if (18 == type || 25 == type || 1042 ==type || 1043 == type) {
if (is_high_bit_set(val) && is_utf8_string(val, val_len))
SvUTF8_on(sv);
}
}
#endif

Maybe that isn't the right test --- maybe you have a version of perl
that passes the #ifdef test, but doesn't have is_utf8_string().

---------------------------------------------------------------------------

Adam Witney wrote:
>
> Trying to install on Mac OSX 10.2.4
>
> Everything all compiles ok, but all the tests fail with
>
> dyld: /usr/bin/perl Undefined symbols: _is_utf8_string
>
> Anyone know what this means?
>
> Perl 5 5.6.0
> DBI module 1.35
> PostgreSQL 7.3.2
> Test::Simple 0.47
>
> Thanks for any help
>
> Adam
>
>
> --
> This message has been scanned for viruses and
> dangerous content by MailScanner, and is
> believed to be clean.
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: Have you searched our list archives?
>
> http://archives.postgresql.org
>

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073

In response to

Responses

Browse pgsql-interfaces by date

  From Date Subject
Next Message Larry Rosenman 2003-03-28 15:59:12 Re: ECPG thread-safety
Previous Message Bruce Momjian 2003-03-28 15:54:23 Re: ECPG thread-safety