Re: [BUGS] OSX problem with make check...

2004-08-13 Thread Adam Witney
On 10/8/04 10:19 pm, Tom Lane [EMAIL PROTECTED] wrote: Theodore Petrosky [EMAIL PROTECTED] writes: this is the error I get with 'make check'. dyld: /Users/postgres/software/postgresql-8.0.0beta1/src/test/regress/./tmp_check/i nstall//usr/local/pgsql/bin/initdb can't open library:

Re: [BUGS] OSX problem with make check...

2004-08-13 Thread Adam Witney
I'm not sure I understand you, but you are saying that it is not working for you, right? Try setting it to export env DYLD_LIBRARY_PATH=/Users/postgres/software/postgresql-8.0.0beta1/src/test/re gress/tmp_check/install/usr/local/pgsql/lib/ adam I hope we are okay with this... I tried your

Re: [BUGS] OSX problem with make check...

2004-08-11 Thread Theodore Petrosky
This was my bad I thought I did what you suggested however looking through the terminal history I see that I left out part of the path. The export env works beautifully for me. Thanks, Ted --- Adam Witney [EMAIL PROTECTED] wrote: I'm not sure I understand you, but you are saying that

[BUGS] OSX problem with make check...

2004-08-10 Thread Theodore Petrosky
I just updated to OS X 10.3.5 and Xcode 1.5 my configure was ./configure --with-rendezvous make this is the error I get with 'make check'. I don't know if it's my fault but i read all the install docs and didn't see that I need to do anything special for the 'make check'... dyld:

Re: [BUGS] OSX problem with make check...

2004-08-10 Thread Tom Lane
Adam Witney [EMAIL PROTECTED] writes: Ah, setting DYLD_LIBRARY_PATH does the trick Great. I'll add that to pg_regress.sh. I notice that it has never built a .dylib library before... In 7.4.x I have always had a libpq.so library. Is this new? Yup. regards, tom lane

Re: [BUGS] OSX problem with make check...

2004-08-10 Thread Tom Lane
Theodore Petrosky [EMAIL PROTECTED] writes: this is the error I get with 'make check'. dyld: /Users/postgres/software/postgresql-8.0.0beta1/src/test/regress/./tmp_check/install//usr/local/pgsql/bin/initdb can't open library: /usr/local/pgsql/lib/libpq.3.dylib (No such file or directory,

Re: [BUGS] OSX problem with make check...

2004-08-10 Thread Theodore Petrosky
I hope we are okay with this... I tried your path and it didn't work ... I am in bash so I did: export env DYLD_LIBRARY_PATH=/Users/postgres/software/postgresql-8.0.0beta1/src/interfaces/libpq Let me know if there is something else I could try. Ted --- Tom Lane [EMAIL PROTECTED] wrote: Adam