From owner-freebsd-ports@FreeBSD.ORG Sat Feb 12 00:07:59 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D839216A4CE; Sat, 12 Feb 2005 00:07:59 +0000 (GMT) Received: from smtp-gw-cl-c.dmv.com (smtp-gw-cl-c.dmv.com [216.240.97.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8C1343D5C; Sat, 12 Feb 2005 00:07:58 +0000 (GMT) (envelope-from sven@dmv.com) Received: from lanshark.dmv.com (lanshark.dmv.com [216.240.97.46]) j1C0MmEo036552; Fri, 11 Feb 2005 19:22:48 -0500 (EST) (envelope-from sven@dmv.com) From: Sven Willenberger To: Tom Lane In-Reply-To: <16124.1108164945@sss.pgh.pa.us> References: <1108135462.10866.12.camel@lanshark.dmv.com> <510442EEF15A0237A0138D49@rambutan.pingpong.net> <1108138215.10866.20.camel@lanshark.dmv.com> <20050211203503.GA79170@heechee.tobez.org> <1108158115.10863.40.camel@lanshark.dmv.com> <20050211220935.GB79170@heechee.tobez.org> <20050211222002.GC79170@heechee.tobez.org> <1108163489.10860.49.camel@lanshark.dmv.com> <16124.1108164945@sss.pgh.pa.us> Content-Type: text/plain Date: Fri, 11 Feb 2005 19:08:54 -0500 Message-Id: <1108166934.10860.59.camel@lanshark.dmv.com> Mime-Version: 1.0 X-Mailer: Evolution 2.0.2 Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.39 cc: Palle Girgensohn cc: pgsql-general@postgresql.org cc: freebsd-ports@freebsd.org cc: Anton Berezin Subject: Re: [GENERAL] databases/p5-postgresql-plperl links to wrong libperl.so X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Feb 2005 00:08:00 -0000 On Fri, 2005-02-11 at 18:35 -0500, Tom Lane wrote: > Sven Willenberger writes: > > it looks like the sed line is stripping out pgac_tmp2 from the pgac_tmp1 > > leaving the system to use the default perl libperl.so. > > when I modified perl_embed_ldflags to not remove the -R line, the > > compile works and links to the proper libperl.so > > It worked for you, but not necessarily for other people. This thread > may be instructive: > http://archives.postgresql.org/pgsql-bugs/2004-11/msg00181.php > > regards, tom lane I see they used the same solution that I did, namely remove the part of the sed statement that removes the ccdflags frmo the ExtUtils::Embed's output. The rpath solution you provided to patch GNUmakefile did not work however, bailing with: gcc -O2 -fno-strict-aliasing -Wmissing-declarations, -Wl, -rpath, /usr/local/lib/perl5/5.8.6/mach/CORE -fpic -DPIC -I. -I/usr/local/lib/perl5/5.8.6/mach/CORE -I../../../src/include -c -o plperl.o plperl.c gcc: cannot specify -o with -c or -S and multiple compilations (As you said it may not work on all platforms). At this point I will try to submit or suggest a patch for the freebsd ports system to simply change the lines in the configure config/perl.m4 files to strip out the replacement part of the sed statement. Thanks, Sven