Thank you for sharing your configuration. I will definitely look more
closely at these macros.
John Ling
- Original Message -
From: Russ Allbery <[EMAIL PROTECTED]>
Date: Friday, January 16, 2004 6:55 pm
Subject: Re: Solaris and socket library
> John Ling <[EMAIL PROTEC
Thank you Bob for that very useful bit of knowledge.
John Ling
- Original Message -
From: Bob Friesenhahn <[EMAIL PROTECTED]>
Date: Friday, January 16, 2004 5:14 pm
Subject: Re: Solaris and socket library
> This is an Autoconf issue, not Automake. Adding the following
John Ling <[EMAIL PROTECTED]> writes:
> Now the solution was to add a -lsocket to the linking options. But,
> should this not be something that autoconf or automake suite of tools
> detect and automatically handle for me? Do I need to manually add this
> only when I run on Solaris?
I use this:
This is an Autoconf issue, not Automake. Adding the following line to
your configure.ac file will likely resolve the problem:
AC_SEARCH_LIBS([connect],[socket],[],[],[])
It should add -lsocket to LIBS if necessary.
Bob
On Fri, 16 Jan 2004, John Ling wrote:
> I am running on Solaris and I wa