Re: Undefined reference to 'FIPS_text_start()'

2012-11-26 Thread Santhosh Kokala
Thanks Dr. Stephen and Andy for helping me resolve this issue. I modified fipsld script to use gcc for compiling fips_premain.c and it worked. On 11/25/12 1:42 PM, Andy Polyakov ap...@openssl.org wrote: Santhosh Kokala wrote: I would really appreciate, if someone helps me with this issue. Why

Re: Undefined reference to 'FIPS_text_start()'

2012-11-26 Thread Santhosh Kokala
I have seen Dr. Stephen's reply in this thread http://www.mail-archive.com/openssl-users@openssl.org/msg63620.html, that fipsld can be modified as long as it follows rules in the security policy. On 11/26/12 4:30 PM, Santhosh Kokala santhosh.kok...@riverbed.com wrote: Thanks Dr. Stephen and Andy

Re: Undefined reference to 'FIPS_text_start()'

2012-11-25 Thread Andy Polyakov
Santhosh Kokala wrote: I would really appreciate, if someone helps me with this issue. Why not just think for a second? export FIPSLD_CC=g++ export CC=gcc means that it's using g++ to compile fips_premain.c. FIPSLD_CC takes precedence over CC in fipsld: CC=${FIPSLD_CC:-${CC}} export

Re: Undefined reference to 'FIPS_text_start()'

2012-11-24 Thread Dr. Stephen Henson
On Sat, Nov 24, 2012, Santhosh Kokala wrote: I would really appreciate, if someone helps me with this issue. Firstly if your application can use the shared library then just link against that: there is no need to use fipsld at all. If you must use static libraries then you should ensure that

RE: Undefined reference to 'FIPS_text_start()'

2012-11-23 Thread Santhosh Kokala
@openssl.org Cc: openssl-...@openssl.org Subject: Re: Undefined reference to 'FIPS_text_start()' Jeffrey, This still did not fix my issue. Any other ideas? Santhosh On 11/20/12 4:14 PM, Jeffrey Walton noloa...@gmail.com wrote: On Tue, Nov 20, 2012 at 6:16 PM, Santhosh Kokala santhosh.kok

Re: Undefined reference to 'FIPS_text_start()'

2012-11-20 Thread Jeffrey Walton
On Tue, Nov 20, 2012 at 6:16 PM, Santhosh Kokala santhosh.kok...@riverbed.com wrote: Hi, I am trying to build an application with the FIPS Object module. I followed the build instructions mentioned in FIPS User Guide 2.0. FIPS Object Module: ./config Make make install Open SSL: