Patch for linking on Solaris-like platforms

2016-08-29 Thread Fabian Groffen
While trying to compile Mutt on Solaris, I found that since 6837:ce71d168c819 getaddrinfo is used for hostname resolution, which needs socket libs. Please find a patch for inspiration. As far as I can tell, we always need socket libs now, hence I removed the entire conditional. Thanks, Fabian

Re: Patch for linking on Solaris-like platforms

2016-08-31 Thread Kevin J. McCarthy
On Mon, Aug 29, 2016 at 11:24:13AM +0200, Fabian Groffen wrote: > While trying to compile Mutt on Solaris, I found that since > > 6837:ce71d168c819 > > getaddrinfo is used for hostname resolution, which needs socket libs. > Please find a patch for inspiration. As far as I can tell, we always > n

Re: Patch for linking on Solaris-like platforms

2016-09-04 Thread Fabian Groffen
On 31-08-2016 09:13:37 -0700, Kevin J. McCarthy wrote: > On Mon, Aug 29, 2016 at 11:24:13AM +0200, Fabian Groffen wrote: > > While trying to compile Mutt on Solaris, I found that since > > > > 6837:ce71d168c819 > > > > getaddrinfo is used for hostname resolution, which needs socket libs. > > Plea

Re: Patch for linking on Solaris-like platforms

2016-09-04 Thread Kevin J. McCarthy
On Sun, Sep 04, 2016 at 01:53:27PM +0200, Fabian Groffen wrote: > On 31-08-2016 09:13:37 -0700, Kevin J. McCarthy wrote: > > On Mon, Aug 29, 2016 at 11:24:13AM +0200, Fabian Groffen wrote: > > > While trying to compile Mutt on Solaris, I found that since > > > > > > 6837:ce71d168c819 > > > > > >

Re: Patch for linking on Solaris-like platforms

2016-09-05 Thread Fabian Groffen
On 04-09-2016 18:05:57 -0700, Kevin J. McCarthy wrote: > Fabian, does the attached patch work for you? This version just pulls > out the checks for libnsl, libsocket, and getaddrinfo. I don't think we > need to include the other stuff unless they are using imap/pop, etc. Hi Kevin, That patch lo