[GENERAL] Am I headed in the right direction? (long)

2001-05-18 Thread Alan Young
I have the following structure: create table _base ( abbreviation varchar(10), short_name varchar(30), full_name varchar(60) ); create table tome ( id serial ) inherits ( _base ); create table book ( id serial ) inherits ( _base ); create table chapter ( id serial ) inherits ( _base ); cre

Re: [GENERAL] PL/Perl without shared libperl.a

2001-05-12 Thread Alan Young
On Fri, 11 May 2001, Tom Lane wrote: > I believe you could actually use a non-shared libperl.a on Intel Linux; > just dike out the test for shared-ness in plperl's Makefile.PL. > The reason it's there is we couldn't think of a direct test for > position-independent code, which is the real requirem

[GENERAL] Compiling pl/perl problems.

2001-05-07 Thread Alan Young
Hello all, I'm having problems compiling pl/perl. I've compiled perl 5.6.0 and 5.6.1 with and without threads and as shared (as per the README in the perl distribution). I've compiled postgresql both 7.0.3 and 7.1. In all cases I get the following errors when trying to compile: [ 11:26:33 root