vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| So the recent thread about getting 7.4 compiling on OS X inspired me. But what I can't understand is that I've yanked --with-ssl, but it's still looking for libssl: http://pgbuildfarm.org/cgi-bin/show_...-15%2023:56:22 ccache gcc -no-cpp-precomp -O2 -fno-strict-aliasing -g -Wall -Wmissing-prototypes -Wmissing-declarations -bundle execute.o typename.o descriptor.o data.o error.o prepare.o memory.o connect.o misc.o path.o -L../pgtypeslib -L../../../../src/interfaces/libpq -L../../../../src/port -L/opt/local/lib -lpgtypes -lpq -lintl -lm -o libecpg.so.4.1 ld: warning can't open dynamic library: /opt/local/lib/libssl.0.9.7.dylib (checking for undefined symbols may be affected) (No such file or directory, errno = 2) ld: warning can't open dynamic library: /opt/local/lib/libcrypto.0.9.7.dylib (checking for undefined symbols may be affected) (No such file or directory, errno = 2) .... ld: Undefined symbols: _SSL_pending referenced from libpq expected to be defined in /opt/local/lib/libssl.0.9.7.dylib _BIO_free referenced from libpq expected to be defined in /opt/local/lib/libcrypto.0.9.7.dylib .... Am I missing something else? The only things I see in configure that call for libcrypto are SSL and KRB, neither of which are configured... -- Jim C. Nasby, Sr. Engineering Consultant jnasby@pervasive.com Pervasive Software http://pervasive.com work: 512-231-6117 vcard: http://jim.nasby.net/pervasive.vcf cell: 512-569-9461 ---------------------------(end of broadcast)--------------------------- TIP 9: In versions below 8.0, the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match |
| |||
| "Jim C. Nasby" <jnasby@pervasive.com> writes: > So the recent thread about getting 7.4 compiling on OS X inspired me. > But what I can't understand is that I've yanked --with-ssl, but it's > still looking for libssl: Tad hard to believe. Maybe you missed a "make distclean" or so? (BTW, the flag is --with-openssl ... --with-ssl would do nothing :-() regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 5: don't forget to increase your free space map settings |
| |||
| On Tue, Nov 15, 2005 at 11:04:59PM -0500, Tom Lane wrote: > "Jim C. Nasby" <jnasby@pervasive.com> writes: > > So the recent thread about getting 7.4 compiling on OS X inspired me. > > But what I can't understand is that I've yanked --with-ssl, but it's > > still looking for libssl: > > Tad hard to believe. Maybe you missed a "make distclean" or so? buildfar@phonebook.1[22:22]~/buildfarm/REL7_4_STABLE/pgsql:21%make distclean You need to run the 'configure' program first. See the file 'INSTALL' for installation instructions. make: *** [distclean] Error 1 buildfar@phonebook.1[22:22]~/buildfarm/REL7_4_STABLE/pgsql:22% I'll try nuking the checkout anyway... > (BTW, the flag is --with-openssl ... --with-ssl would do nothing :-() Yeah, sorry, was going from my (faulty) memory. -- Jim C. Nasby, Sr. Engineering Consultant jnasby@pervasive.com Pervasive Software http://pervasive.com work: 512-231-6117 vcard: http://jim.nasby.net/pervasive.vcf cell: 512-569-9461 ---------------------------(end of broadcast)--------------------------- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to majordomo@postgresql.org so that your message can get through to the mailing list cleanly |
| |||
| On Tue, Nov 15, 2005 at 11:04:59PM -0500, Tom Lane wrote: > "Jim C. Nasby" <jnasby@pervasive.com> writes: > > So the recent thread about getting 7.4 compiling on OS X inspired me. > > But what I can't understand is that I've yanked --with-ssl, but it's > > still looking for libssl: > > Tad hard to believe. Maybe you missed a "make distclean" or so? > (BTW, the flag is --with-openssl ... --with-ssl would do nothing :-() Hrm, I am using ccache... maybe it's got a screw loose. I'll try wiping the cache next if the clean checkout doesn't do it. -- Jim C. Nasby, Sr. Engineering Consultant jnasby@pervasive.com Pervasive Software http://pervasive.com work: 512-231-6117 vcard: http://jim.nasby.net/pervasive.vcf cell: 512-569-9461 ---------------------------(end of broadcast)--------------------------- TIP 2: Don't 'kill -9' the postmaster |
| |||
| Tom Lane wrote: >"Jim C. Nasby" <jnasby@pervasive.com> writes: > > >>So the recent thread about getting 7.4 compiling on OS X inspired me. >>But what I can't understand is that I've yanked --with-ssl, but it's >>still looking for libssl: >> >> > >Tad hard to believe. Maybe you missed a "make distclean" or so? > > > "make distclean" should never be necessary for a buildfarm run - we always build in one of these 3 ways: .. against a fresh checkout made with 'cvs export' .. against a one-off temporary copy of our local repo, made after we ran cvs update .. against our local repo using VPATH The recent release of buildfarm code goes to some length to ensure that the repo is clean, in case somebody has mangled it by hand. cheers andrew ---------------------------(end of broadcast)--------------------------- TIP 5: don't forget to increase your free space map settings |
| |||
| Andrew Dunstan <andrew@dunslane.net> writes: > Tom Lane wrote: >> "Jim C. Nasby" <jnasby@pervasive.com> writes: >>> So the recent thread about getting 7.4 compiling on OS X inspired me. >>> But what I can't understand is that I've yanked --with-ssl, but it's >>> still looking for libssl: >> Tad hard to believe. Maybe you missed a "make distclean" or so? > "make distclean" should never be necessary for a buildfarm run - we > always build in one of these 3 ways: He didn't say it was a buildfarm run. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 3: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faq |
| |||
| Tom Lane wrote: >Andrew Dunstan <andrew@dunslane.net> writes: > > >>Tom Lane wrote: >> >> >>>"Jim C. Nasby" <jnasby@pervasive.com> writes: >>> >>> >>>>So the recent thread about getting 7.4 compiling on OS X inspired me. >>>>But what I can't understand is that I've yanked --with-ssl, but it's >>>>still looking for libssl: >>>> >>>> > > > >>>Tad hard to believe. Maybe you missed a "make distclean" or so? >>> >>> > > > >>"make distclean" should never be necessary for a buildfarm run - we >>always build in one of these 3 ways: >> >> > >He didn't say it was a buildfarm run. > > Yeah he did ;-) He said: >But what I can't understand is that I've yanked --with-ssl, but it's >still looking for libssl: >http://pgbuildfarm.org/cgi-bin/show_...-15%2023:56:22 > anyway, no biggie. cheers andrew ---------------------------(end of broadcast)--------------------------- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to majordomo@postgresql.org so that your message can get through to the mailing list cleanly |
| |||
| On Tue, Nov 15, 2005 at 10:27:06PM -0600, Jim C. Nasby wrote: > On Tue, Nov 15, 2005 at 11:04:59PM -0500, Tom Lane wrote: > > "Jim C. Nasby" <jnasby@pervasive.com> writes: > > > So the recent thread about getting 7.4 compiling on OS X inspired me. > > > But what I can't understand is that I've yanked --with-ssl, but it's > > > still looking for libssl: > > > > Tad hard to believe. Maybe you missed a "make distclean" or so? > > (BTW, the flag is --with-openssl ... --with-ssl would do nothing :-() > > Hrm, I am using ccache... maybe it's got a screw loose. I'll try wiping > the cache next if the clean checkout doesn't do it. Well, I've tried blowing away the CVS checkout (http://lnk.nu/pgbuildfarm.org/62o.pl) and clearing out my ccache (http://lnk.nu/pgbuildfarm.org/62p.pl), but I'm still getting the same failure. I do have perl, python, tcl and nls enabled, could one of them be trying to pull libssl and libcrypto in for some reason? -- Jim C. Nasby, Sr. Engineering Consultant jnasby@pervasive.com Pervasive Software http://pervasive.com work: 512-231-6117 vcard: http://jim.nasby.net/pervasive.vcf cell: 512-569-9461 ---------------------------(end of broadcast)--------------------------- TIP 9: In versions below 8.0, the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match |
| |||
| "Jim C. Nasby" <jnasby@pervasive.com> writes: > I do have perl, python, tcl and nls enabled, could one of them > be trying to pull libssl and libcrypto in for some reason? Perhaps --- try "otool -L" (local equivalent of ldd) on them to find out. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 9: In versions below 8.0, the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match |
| ||||
| On Wed, Nov 16, 2005 at 11:50:51AM -0500, Tom Lane wrote: > "Jim C. Nasby" <jnasby@pervasive.com> writes: > > I do have perl, python, tcl and nls enabled, could one of them > > be trying to pull libssl and libcrypto in for some reason? > > Perhaps --- try "otool -L" (local equivalent of ldd) on them to find > out. buildfar@phonebook.1[11:13]~/buildfarm/source:39%otool -L `which perl` /opt/local/bin/perl: /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 71.1.3) buildfar@phonebook.1[11:13]~/buildfarm/source:40%otool -L `which python` /opt/local/bin/python: /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 71.1.1) buildfar@phonebook.1[11:13]~/buildfarm/source:41%otool -L `which tclsh` /opt/local/bin/tclsh: /opt/local/lib/libtcl8.4.dylib (compatibility version 8.4.0, current version 8.4.11) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation (compatibility version 150.0.0, current version 299.35.0) /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 71.1.3) buildfar@phonebook.1[11:14]~/buildfarm/source:42%otool -L /opt/local/lib/libtcl8.4.dylib /opt/local/lib/libtcl8.4.dylib: /opt/local/lib/libtcl8.4.dylib (compatibility version 8.4.0, current version 8.4.11) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation (compatibility version 150.0.0, current version 299.35.0) /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 71.1.3) buildfar@phonebook.1[11:14]~/buildfarm/source:43% I'll try yanking that stuff in any case... -- Jim C. Nasby, Sr. Engineering Consultant jnasby@pervasive.com Pervasive Software http://pervasive.com work: 512-231-6117 vcard: http://jim.nasby.net/pervasive.vcf cell: 512-569-9461 ---------------------------(end of broadcast)--------------------------- TIP 5: don't forget to increase your free space map settings |