I don't remember what we did to fix this last time, and I've had to rebuild my system completely from scratch over the past few days, so dont' have past patches to work from ... new-relay:/usr/slocal/src/openssh-1.2pre15> make gcc -g -O2 -Wall -I/usr/slocal/include -DETCDIR=\"/usr/local/etc/ssh\" -DSSH_PROGRAM=\"/usr/slocal/bin/ssh\" -DHAVE_CONFIG_H -c authfd.c -o authfd.o In file included from ssh.h:25, from authfd.c:19: rsa.h:40: parse error before `__P' rsa.h:42: parse error before `__P' rsa.h:44: parse error before `__P' rsa.h:45: parse error before `__P' make: *** [authfd.o] Error 1 Marc G. Fournier marc.fournier at acadiau.ca Senior Systems Administrator Acadia University "These are my opinions, which are not necessarily shared by my employer"
add #define __P(protos) protos /* full-blown ANSI C */ or #define __P(protos) () /* traditional C preprocessor */ On Thu, Nov 25, 1999 at 04:12:24PM -0400, Marc G. Fournier wrote:> > I don't remember what we did to fix this last time, and I've had to > rebuild my system completely from scratch over the past few days, so dont' > have past patches to work from ... > > new-relay:/usr/slocal/src/openssh-1.2pre15> make > gcc -g -O2 -Wall -I/usr/slocal/include -DETCDIR=\"/usr/local/etc/ssh\" -DSSH_PROGRAM=\"/usr/slocal/bin/ssh\" -DHAVE_CONFIG_H -c authfd.c -o authfd.o > In file included from ssh.h:25, > from authfd.c:19: > rsa.h:40: parse error before `__P' > rsa.h:42: parse error before `__P' > rsa.h:44: parse error before `__P' > rsa.h:45: parse error before `__P' > make: *** [authfd.o] Error 1 > > > Marc G. Fournier marc.fournier at acadiau.ca > Senior Systems Administrator Acadia University > > "These are my opinions, which are not necessarily shared by my employer" >
"Marc G. Fournier" wrote:> > I don't remember what we did to fix this last time, and I've had to > rebuild my system completely from scratch over the past few days, so dont' > have past patches to work from ...Damn - I must have picked these up with the formatting change. Add the following to the end of config.h.in and re-reun configure: #ifndef __P # define __P(x) x #endif and tell me how it goes. Thanks, Damien