|
List Info
Thread: Debian build problems
|
|
| Debian build problems |

|
2006-05-09 13:06:26 |
Hi,
Just trying to setup AOLserver on a debian box. Tried
several version of
Tcl and AOLserver (including the 8.4.9/4.0.9 I have working
elsewhere on a
Fedora box) but always the same problem:
conn.c: In function 'NsTclConnObjCmd':
conn.c:843: error: invalid lvalue in assignment
make[1]: *** [conn.o] Error 1
Does anyone have any ideas? CVS HEAD does build, but this is
supposed to
be a production box, so I don't really want to run that
yet.
Cheers,
Bas.
--
AOLserver - http://www.aolserver.com/
a>
To Remove yourself from this list, simply send an email to
<listserv listserv.aol.com> with the
body of "SIGNOFF AOLSERVER" in the email
message. You can leave the Subject: field of your email
blank.
|
|
| Debian build problems |

|
2006-05-09 13:14:09 |
Make sure you're building not building with gcc 4.0, maybe
try 3.3 or
3.4.
On May 9, 2006, at 9:06 AM, Bas Scheffers wrote:
> Hi,
>
> Just trying to setup AOLserver on a debian box. Tried
several
> version of
> Tcl and AOLserver (including the 8.4.9/4.0.9 I have
working
> elsewhere on a
> Fedora box) but always the same problem:
>
> conn.c: In function 'NsTclConnObjCmd':
> conn.c:843: error: invalid lvalue in assignment
> make[1]: *** [conn.o] Error 1
>
> Does anyone have any ideas? CVS HEAD does build, but
this is
> supposed to
> be a production box, so I don't really want to run
that yet.
>
> Cheers,
> Bas.
>
>
> --
> AOLserver - http://www.aolserver.com/
a>
>
> To Remove yourself from this list, simply send an email
to
> <listserv listserv.aol.com> with the
> body of "SIGNOFF AOLSERVER" in the email
message. You can leave the
> Subject: field of your email blank.
>
--
AOLserver - http://www.aolserver.com/
a>
To Remove yourself from this list, simply send an email to
<listserv listserv.aol.com> with the
body of "SIGNOFF AOLSERVER" in the email
message. You can leave the Subject: field of your email
blank.
|
|
| Debian build problems |

|
2006-05-09 13:38:54 |
|
You'll probably be wanting this listserv.aol.com/msg09188.html">http://www.mail-archive.com/aolserver listserv.aol.com/msg09188.html
- Steve
On Tue, 2006-05-09 at 14:06 +0100, Bas Scheffers wrote:
Hi,
Just trying to setup AOLserver on a debian box. Tried several version of
Tcl and AOLserver (including the 8.4.9/4.0.9 I have working elsewhere on a
Fedora box) but always the same problem:
conn.c: In function 'NsTclConnObjCmd':
conn.c:843: error: invalid lvalue in assignment
make[1]: *** [conn.o] Error 1
Does anyone have any ideas? CVS HEAD does build, but this is supposed to
be a production box, so I don't really want to run that yet.
Cheers,
Bas.
--
AOLserver - http://www.aolserver.com/
To Remove yourself from this list, simply send an email to <listserv.aol.com">listserv listserv.aol.com> with the
body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank.
|
| Debian build problems |

|
2006-05-09 16:06:17 |
Jeremy's right. It's technically a syntax error that 3.x
lets slide,
but 4.0 complains about. The change to get rid of the error
is this:
< connPtr = (Conn *) conn = itPtr->conn;
---
> conn = itPtr->conn;
> connPtr = (Conn *) conn;
Rick
Jeremy Collins wrote:
> Make sure you're building not building with gcc 4.0,
maybe try 3.3 or
> 3.4.
>
> On May 9, 2006, at 9:06 AM, Bas Scheffers wrote:
>
>> Hi,
>>
>> Just trying to setup AOLserver on a debian box.
Tried several version of
>> Tcl and AOLserver (including the 8.4.9/4.0.9 I have
working elsewhere
>> on a
>> Fedora box) but always the same problem:
>>
>> conn.c: In function 'NsTclConnObjCmd':
>> conn.c:843: error: invalid lvalue in assignment
>> make[1]: *** [conn.o] Error 1
>>
>> Does anyone have any ideas? CVS HEAD does build,
but this is supposed to
>> be a production box, so I don't really want to run
that yet.
>>
>> Cheers,
>> Bas.
>>
>>
>> --
>> AOLserver - http://www.aolserver.com/
a>
>>
>> To Remove yourself from this list, simply send an
email to
>> <listserv listserv.aol.com> with the
>> body of "SIGNOFF AOLSERVER" in the
email message. You can leave the
>> Subject: field of your email blank.
>>
>
>
> --
> AOLserver - http://www.aolserver.com/
a>
>
> To Remove yourself from this list, simply send an email
to
> <listserv listserv.aol.com> with the
> body of "SIGNOFF AOLSERVER" in the email
message. You can leave the
> Subject: field of your email blank.
>
--
AOLserver - http://www.aolserver.com/
a>
To Remove yourself from this list, simply send an email to
<listserv listserv.aol.com> with the
body of "SIGNOFF AOLSERVER" in the email
message. You can leave the Subject: field of your email
blank.
|
|
| Debian build problems |

|
2006-05-09 16:50:58 |
Thanks everyone for responing, the patch did the trick.
Cheers,
Bas.
Rick Gutleber said:
> Jeremy's right. It's technically a syntax error that
3.x lets slide,
> but 4.0 complains about. The change to get rid of the
error is this:
>
> < connPtr = (Conn *) conn = itPtr->conn;
> ---
> > conn = itPtr->conn;
> > connPtr = (Conn *) conn;
>
> Rick
>
> Jeremy Collins wrote:
> > Make sure you're building not building with gcc
4.0, maybe try 3.3 or
> > 3.4.
> >
> > On May 9, 2006, at 9:06 AM, Bas Scheffers wrote:
> >
> >> Hi,
> >>
> >> Just trying to setup AOLserver on a debian
box. Tried several version
>>> of
> >> Tcl and AOLserver (including the 8.4.9/4.0.9 I
have working elsewhere
> >> on a
> >> Fedora box) but always the same problem:
> >>
> >> conn.c: In function 'NsTclConnObjCmd':
> >> conn.c:843: error: invalid lvalue in
assignment
> >> make[1]: *** [conn.o] Error 1
> >>
> >> Does anyone have any ideas? CVS HEAD does
build, but this is supposed
>>> to
> >> be a production box, so I don't really want
to run that yet.
> >>
> >> Cheers,
> >> Bas.
> >>
> >>
> >> --
> >> AOLserver - http://www.aolserver.com/
a>
> >>
> >> To Remove yourself from this list, simply send
an email to
> >> <listserv listserv.aol.com> with
the
> >> body of "SIGNOFF AOLSERVER" in the
email message. You can leave the
> >> Subject: field of your email blank.
> >>
> >
> >
> > --
> > AOLserver - http://www.aolserver.com/
a>
> >
> > To Remove yourself from this list, simply send an
email to
> > <listserv listserv.aol.com> with the
> > body of "SIGNOFF AOLSERVER" in the
email message. You can leave the
> > Subject: field of your email blank.
> >
>
>
> --
> AOLserver - http://www.aolserver.com/
a>
>
> To Remove yourself from this list, simply send an email
to
> <listserv listserv.aol.com> with the
> body of "SIGNOFF AOLSERVER" in the email
message. You can leave the
> Subject: field of your email blank.
>
--
AOLserver - http://www.aolserver.com/
a>
To Remove yourself from this list, simply send an email to
<listserv listserv.aol.com> with the
body of "SIGNOFF AOLSERVER" in the email
message. You can leave the Subject: field of your email
blank.
|
|
[1-5]
|
|