i fixed a minor problem in line 60 of scsh/network.c with conflicting
types for listen: in network.c it was an int, whereas in socket.h it was
an unsigned int.
extern int listen(int , int );
changed to
extern int listen(int , unsigned int );
i had further troubles when make got to scsh/sighandlers1.c:
(abbreviated)
scsh/sighandlers1.c:
in function 'set_procmask':
line 44: incompatible types in assignment
line 47: invalid operands to binary >>
line 47: invalid operands to binary &
in function 'get_procmask':
line 58: invalid operands to binary >>
line 58: invalid operands to binary &
BTW i am running linux 2.2.8 on a pentium 133 with 24meg RAM. if you
need any more detail let me know. i'm not sure if any of this is any
help. maybe it's just my machine...
anyways,
hollis
--
J.D. Hollis (root@eldwist.net)
I am what is around me.
Women understand this.
One is not duchess
A hundred yards from a carriage.
These, then are portraits:
A black vestibule;
A high bed sheltered by curtains.
These are merely instances.
-- Wallace Stevens, Theory
|