Re: Issue with Libtool

2008-11-22 Thread Jacob Meuser
On Sat, Nov 22, 2008 at 08:13:26PM +1100, Gavin Norman wrote: > Okay, libcommon is compiled with -fPIC, is the issue that libtool won't > link a static archive against a dynamic lib? Is there anyway to force > this? libtool refuses to link a non-PIC object into a dynamic lib. libtool uses the obj

Re: Issue with Libtool

2008-11-22 Thread Gavin Norman
Okay, libcommon is compiled with -fPIC, is the issue that libtool won't link a static archive against a dynamic lib? Is there anyway to force this? Regards. Gavin Norman M: +614 0935 4020 E: [EMAIL PROTECTED] On Tue, 2008-11-18 at 23:20 +1100, Gavin Norman wrote: > I've made the port available

Re: Issue with Libtool

2008-11-18 Thread Gavin Norman
I've made the port available here: http://public.rcservices.com.au/ports You'll need to download the other tarballs in the directory as they are dependencies. The main port is zarafa. -- Gavin Norman E: [EMAIL PROTECTED] On Tue, 18 Nov 2008 7:11:19 am Jacob Meuser wrote: > On Mon, Nov 17, 2008

Re: Issue with Libtool

2008-11-17 Thread Gavin Norman
I discovered that the the Makefile.in in common/* (where the libcommon etc..) resides had -static in their LDFLAGS. After removing these the issue wasn't fixed. On Mon, 17 Nov 2008 20:11:19 +, Jacob Meuser <[EMAIL PROTECTED]> wrote: > On Mon, Nov 17, 2008 at 11:49:26PM +1100, Gavin Norman wrot

Re: Issue with Libtool

2008-11-17 Thread Jacob Meuser
On Mon, Nov 17, 2008 at 11:49:26PM +1100, Gavin Norman wrote: > The ldapplugin being compiled. This is with -fPIC added to the CPPFLAGS > and after *_la_LDFLAGS, still with no success: > /usr/local/bin/libtool --mode=link c++ -O2 -pipe -g -Wall > -Wno-write-strings -DOPENBSD -pedantic -Wno-l

Re: Issue with Libtool

2008-11-17 Thread Gavin Norman
. ar cru .libs/ldapplugin.a ldapplugin_la-LDAPUserPlugin.o ldapplugin_la-ldappasswords.o ranlib .libs/ldapplugin.a creating ldapplugin.la Gavin Norman wrote: I'm trying to port an application, however I'm having an issue with libtool not creating the shared objects. The compilation

Issue with Libtool

2008-11-16 Thread Gavin Norman
I'm trying to port an application, however I'm having an issue with libtool not creating the shared objects. The compilation works fine, however only a static archive (*.a) and libtool library/policy (*.la) are created. In the below Makefile.am, you can see the two libtool libraries t

Re: Issue with Libtool

2008-11-16 Thread Jacob Meuser
d -fPIC to CFLAGS and after -module in *_la_DLFLAGS. On Sun, Nov 16, 2008 at 11:50:53PM +1100, Gavin Norman wrote: > I'm trying to port an application, however I'm having an issue with > libtool not creating the shared objects. > > The compilation works fine, however

Issue with Libtool

2008-11-16 Thread Gavin Norman
I'm trying to port an application, however I'm having an issue with libtool not creating the shared objects. The compilation works fine, however only a static archive (*.a) and libtool library/policy (*.la) are created. In the below Makefile.am, you can see the two libtool libr