login button

svn build issues on windows xp

Forums :

I apologize for the cross post (I posted friday in the WSDL mtom/xop thread) but I think it's more appropriate
as a separate thread.

I'm trying to build from the svn distribution on windows XP. I've followed the instructions
in the README.INSTALL_WIN32 but there are some issues when I build. Included in the attachment
are build logs from both msvc 2003 and 2005 attempts, my configure.in file, and a file containing
the list of library versions I'm using.

Thanks,
Marc

AttachmentSize
buildFailureInfo.zip15.56 KB

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

This is an open ssl problem

Hi Marc,

From the logs, you can see Rampart/C is failing when compiling. The reason for failure is due to openssl problem. Rampart/C was tested with openssl 0.9.8d and 0.9.8e. You are using openssl 0.9.8h to compile, and the problem you are having is a known problem in openssl[1]. Is it possible for you to install 0.9.8e/0.9.8g and try?

Regards,
Shankar

[1] http://rt.openssl.org/Ticket/Display.html?id=1700&user=guest&pass=guest

Thanks Shankar, I modified

Thanks Shankar, I modified the x509.h file in the 0.9.8h release per the suggestion in the ticket thread (see below)
and it compiled fine and also fixes our mtom/xop issue.

Thanks very much,
Marc

> Or add X509_EXTENSIONS to the value that are already being undefined for
> Windows in x509.h:
>
> #ifdef OPENSSL_SYS_WIN32
> /* Under Win32 these are defined in wincrypt.h */
> #undef X509_NAME
> #undef X509_CERT_PAIR
> #undef X509_EXTENSIONS
> #endif

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.