Re: Compile error for Cygwin

2004-02-12 Thread A. Clausen
- Original Message - From: "Manuel Ricca" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 12, 2004 10:44 Subject: RE: Compile error for Cygwin > Yeah, I got that too. But it compiled anyway. Check your /usr/local/sbin I managed to g

RE: Compile error for Cygwin

2004-02-12 Thread Manuel Ricca
Title: RE: Compile error for Cygwin Yeah, I got that too. But it compiled anyway. Check your /usr/local/sbin Cheers, Manuel Ricca -Original Message- From: A. Clausen [mailto:[EMAIL PROTECTED]] Sent: quinta-feira, 12 de Fevereiro de 2004 17:07 To: [EMAIL PROTECTED] Subject: Re

Re: Compile error for Cygwin

2004-02-12 Thread A. Clausen
Now I've got a real error again (not just my incompetence). This is what I get doing "make install": make[7]: Entering directory `/usr/src/freeradius-0.9.3/src/modules/rlm_ippool' /usr/src/freeradius-0.9.3/install-sh -c -m 755 -d /usr/local/bin /usr/src/freeradius-0.9.3/install-sh -c -m 755 -s rl

Re: Compile error for Cygwin

2004-02-12 Thread Keith Yoder
> > I am geeting the following notice message in the radius.log file: > > Thu Feb 12 09:08:23 2004 : Info: Using deprecated naslist file. Support for > this will go away soon. > Thu Feb 12 09:08:23 2004 : Info: Using deprecated clients file. Support for > this will go away soon. > Thu Feb 12 09:0

RE: Compile error for Cygwin

2004-02-12 Thread Ayman Alashquar
Dear All, I am geeting the following notice message in the radius.log file: Thu Feb 12 09:08:23 2004 : Info: Using deprecated naslist file. Support for this will go away soon. Thu Feb 12 09:08:23 2004 : Info: Using deprecated clients file. Support for this will go away soon. Thu Feb 12 09:08:23

Re: Compile error for Cygwin

2004-02-11 Thread A. Clausen
- Original Message - From: "A. Clausen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 11, 2004 16:44 Subject: Re: Compile error for Cygwin > I've gone through and made the changes to the source, but compiling still > gives me: &g

Re: Compile error for Cygwin

2004-02-11 Thread A. Clausen
I've gone through and made the changes to the source, but compiling still gives me: Making static dynamic in rlm_counter... make[6]: Entering directory `/usr/src/freeradius-0.9.3/src/modules/rlm_counter' gcc -g -O2 -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -Wall -D_GNU_SOURCE -DND EBUG -I../../inc

Re: Compile error for Cygwin

2004-02-04 Thread Alan DeKok
[EMAIL PROTECTED] (Paul Hampson) wrote: > With reference to a telling off I received over the same _line_ > last July: ("Not everybody uses Linux :)" -- Gustavo Lozano) > http://lists.cistron.nl/pipermail/freeradius-users/2003-July/021754.html > Solaris doesn't have inet_aton. src/lib/missing.c

Re: Compile error for Cygwin

2004-02-03 Thread Paul Hampson
On Tue, Feb 03, 2004 at 11:24:24AM -0500, Alan DeKok wrote: > Manuel Ricca <[EMAIL PROTECTED]> wrote: > > After all I was able to solve this problem. I had to edit > > rlm_ippool_tool.c > > and replace, at line 115: > > if (inet_pton(AF_INET, ipaddress, &ipaddr) == 0) > > with > > if (inet_aton(ip

Re: Compile error for Cygwin

2004-02-03 Thread Alan DeKok
Manuel Ricca <[EMAIL PROTECTED]> wrote: > After all I was able to solve this problem. I had to edit > rlm_ippool_tool.c > and replace, at line 115: > if (inet_pton(AF_INET, ipaddress, &ipaddr) == 0) > > with > if (inet_aton(ipaddress, &ipaddr) == 0) Added, thanks. > BTW, I'm still getting some

RE: Compile error for Cygwin

2004-02-03 Thread Manuel Ricca
After all I was able to solve this problem. I had to edit rlm_ippool_tool.c and replace, at line 115: if (inet_pton(AF_INET, ipaddress, &ipaddr) == 0)   with if (inet_aton(ipaddress, &ipaddr) == 0)     It should work the same way, as aton() is a specific implementation of pton() for