[GRASS5] 5.1 CVS Head: typo in Platform.make

Line 72 of /include/Make/Platform.make should be:

SOCKLIB = -lsocket

instead of:

SOCKLIB = -socket

On Wed, Mar 12, 2003 at 10:40:56PM -0800, cheg01@attbi.com wrote:

Line 72 of /include/Make/Platform.make should be:

SOCKLIB = -lsocket

instead of:

SOCKLIB = -socket

Thanks for finding that. The same bug will be in 5.0:

diff configure.in.old configure.in
479c479
< AC_CHECK_LIB(socket, socket, SOCKLIB=-socket, [
---

AC_CHECK_LIB(socket, socket, SOCKLIB=-lsocket, [

Markus

On Thu, Mar 13, 2003 at 08:40:09AM +0100, Markus Neteler wrote:

On Wed, Mar 12, 2003 at 10:40:56PM -0800, cheg01@attbi.com wrote:
> Line 72 of /include/Make/Platform.make should be:
>
> SOCKLIB = -lsocket
>
> instead of:
>
> SOCKLIB = -socket

Thanks for finding that. The same bug will be in 5.0:

diff configure.in.old configure.in
479c479
< AC_CHECK_LIB(socket, socket, SOCKLIB=-socket, [
---
> AC_CHECK_LIB(socket, socket, SOCKLIB=-lsocket, [

Fixed in CVS for 5.0 and 5.1.

Markus