Re: [GENERAL] UUID-OSSP Contrib Module Compilation Issue

2008-10-29 Thread Tom Lane
Bruce McAlister <[EMAIL PROTECTED]> writes: >> Bizarre ... I've never heard of a Unix system that didn't consider that >> a default place to look. Unless this is a 64-bit machine and uuid >> should have installed itself in /usr/lib64? > It is a rather peculiar issue, I also assumed that it would

Re: [GENERAL] UUID-OSSP Contrib Module Compilation Issue

2008-10-29 Thread Bruce McAlister
> > Bizarre ... I've never heard of a Unix system that didn't consider that > a default place to look. Unless this is a 64-bit machine and uuid > should have installed itself in /usr/lib64? > It is a rather peculiar issue, I also assumed that it would check the standard locations, but I thought

Re: [GENERAL] UUID-OSSP Contrib Module Compilation Issue

2008-10-28 Thread Tom Lane
Bruce McAlister <[EMAIL PROTECTED]> writes: > In addition to the missing configure option, it turned out to be missing > LDFLAGS parameters, I just added -L/usr/lib to LDFLAGS and it all built > successfully now. Bizarre ... I've never heard of a Unix system that didn't consider that a default pla

Re: [GENERAL] UUID-OSSP Contrib Module Compilation Issue

2008-10-28 Thread Bruce McAlister
> > The 1.6.2 stable version which you use is right. > Thanks, we managed to get it working now. Thanks for the pointers. -- Sent via pgsql-general mailing list (pgsql-general@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-general

Re: [GENERAL] UUID-OSSP Contrib Module Compilation Issue

2008-10-28 Thread Bruce McAlister
> > Huh. Nothing obvious in your info about why it wouldn't work. I think > you'll need to dig through the config.log output to see why these link > tests are failing. (They'll be a few hundred lines above the end of the > log, because the last part of the log is always a dump of configure's >

Re: [GENERAL] UUID-OSSP Contrib Module Compilation Issue

2008-10-28 Thread Hiroshi Saito
Do I need to use a specific version of the ossp-uuid libraries for this module? The 1.6.2 stable version which you use is right. Regards, Hiroshi Saito -- Sent via pgsql-general mailing list (pgsql-general@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref

Re: [GENERAL] UUID-OSSP Contrib Module Compilation Issue

2008-10-28 Thread Tom Lane
Bruce McAlister <[EMAIL PROTECTED]> writes: > When I run configure with the above options, I end up with the following > configure error: > checking for uuid_export in -lossp-uuid... no > checking for uuid_export in -luuid... no > configure: error: library 'ossp-uuid' or 'uuid' is required for OSS

Re: [GENERAL] UUID-OSSP Contrib Module Compilation Issue

2008-10-28 Thread Hiroshi Saito
Hi. Um, you are reconfigure of postgresql then. It is necessary to specify with-ossp-uuid. Regards, Hiroshi Saito - Original Message - From: "Bruce McAlister" <[EMAIL PROTECTED]> To: "pgsql" Sent: Wednesday, October 29, 2008 8:01 AM Subject: [GENERAL

Re: [GENERAL] UUID-OSSP Contrib Module Compilation Issue

2008-10-28 Thread Bruce McAlister
> > Um ... did you run PG's configure script with --with-ossp-uuid? > It looks like either you didn't do that, or configure doesn't know > to look in the place where you put the ossp-uuid header files. > Doh, I missed that, however, I have now included that option but it still does not find the

Re: [GENERAL] UUID-OSSP Contrib Module Compilation Issue

2008-10-28 Thread Tom Lane
Bruce McAlister <[EMAIL PROTECTED]> writes: > I am trying to build the uuid-ossp contrib module for PostgreSQL 8.3.4. > I am building on Solaris x86 with Sun Studio 12. > I built the ossp-uuid version 1.6.2 libraries and installed them, > however, whenever I attempt to build the contrib module I a

[GENERAL] UUID-OSSP Contrib Module Compilation Issue

2008-10-28 Thread Bruce McAlister
Hi All, I am trying to build the uuid-ossp contrib module for PostgreSQL 8.3.4. I am building on Solaris x86 with Sun Studio 12. I built the ossp-uuid version 1.6.2 libraries and installed them, however, whenever I attempt to build the contrib module I always end up with the following error: ---