Re: using pkgsrc libs

2006-04-30 Thread joerg
On Sat, Apr 29, 2006 at 07:52:04PM +1000, John Duncan wrote: > On Fri, Apr 28, 2006 at 02:14:39PM +0200, [EMAIL PROTECTED] wrote: > > On Fri, Apr 28, 2006 at 08:32:41PM +1000, John Duncan wrote: > > > To get Sendmail to see the sasl libraries from pkgsrc > > > for SMTP AUTH I had to put this

Re: using pkgsrc libs

2006-04-29 Thread John Duncan
On Fri, Apr 28, 2006 at 02:14:39PM +0200, [EMAIL PROTECTED] wrote: > On Fri, Apr 28, 2006 at 08:32:41PM +1000, John Duncan wrote: > > To get Sendmail to see the sasl libraries from pkgsrc > > for SMTP AUTH I had to put this line in /etc/rc.conf > > Which sendmail? From base? > > Joerg >

Re: using pkgsrc libs

2006-04-28 Thread joerg
On Fri, Apr 28, 2006 at 08:32:41PM +1000, John Duncan wrote: > To get Sendmail to see the sasl libraries from pkgsrc > for SMTP AUTH I had to put this line in /etc/rc.conf Which sendmail? From base? Joerg

Re: using pkgsrc libs

2006-04-28 Thread John Duncan
On Thu, Apr 27, 2006 at 01:17:06PM -0400, Terry Tree wrote: > How to I add /usr/pkg/lib into the search path for the dynamic loader ? > To get Sendmail to see the sasl libraries from pkgsrc for SMTP AUTH I had to put this line in /etc/rc.conf ldconfig_paths="$ldconfig_paths /usr/pkg/lib"

Re: using pkgsrc libs

2006-04-27 Thread Jeremy C. Reed
On Thu, 27 Apr 2006, Terry Tree wrote: > How to I add /usr/pkg/lib into the search path for the dynamic loader ? > > Also how do I add the /usr/pkg/include directory into the include path > for gcc ? Right now I'm doing #include "/usr/pkg/include/gdbm.h" > where as I'd like to do #include Or i

using pkgsrc libs

2006-04-27 Thread Terry Tree
How to I add /usr/pkg/lib into the search path for the dynamic loader ? Also how do I add the /usr/pkg/include directory into the include path for gcc ? Right now I'm doing #include "/usr/pkg/include/gdbm.h" where as I'd like to do #include # gcc -o main main.c -L/usr/pkg/lib -lgdbm # ./main te