----- Original Message -----
> On Sat, 2013-01-26 at 15:15 +1100, Ken McDonell wrote:
> > I'm trying to build pcp on an ia64 system that does not have
> > headers
> > like ssl.h ... the latest code changes do not include configure
> > glue and
> > conditional code to handle this (libpcp/src/auxconnect.c has some
> > stuff,
> > but it is wrong in one place and incomplete in another),
> > pmcd/src/secure.c has no chance of compiling.
> >
> > Can this be fixed?
>
For sure. The auxconnect one slipped through with recent changes.
> Looks like a #ifdef HAVE_SECURE_SOCKETS guard around all of secure.c
> is all that is needed.
>
Yeah, the intention was for this to be guarded in the makefile:
ifneq "$(LIB_FOR_SSL)" ""
CFILES += secure.c
LLDLIBS += $(LIB_FOR_SSL)
else
LSRCFILES += secure.c
endif
is not working for you it seems. Perhaps thats some other (open?)ssl
implementation that configure has found. Will dig a little further,
thanks.
--
Nathan
|