Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

cyrus-sasl-2.1.21

Status
Not open for further replies.

bdw238

MIS
Dec 15, 2005
52
GB
I am trying to compile cyrus-sasl-2.1.21 on aix 5.3, with

gcc 4.0.2
m4-1.4.1-1
autoconf-2.59-1
automake-1.8.5-1
libtool-1.5.8-1

openssl headers location = /opt/freeware/include/openssl

and configure set as

ssl=/opt/freeware
LDFLAGS="-L$ssl/lib" export LDFLAGS
CPPFLAGS="-I$ssl/include/openssl" export CPPFLAGS
flags=' --with-openssl=/opt/freeware/include/openssl'
echo ./configure $flags
exec ./configure $flags

Note - tried without the LDFLAGS AND CPPFLAGS set

and get the make error at plugin stage, see below

Any Ideas?

Merry Xmas

Brian

Making all in plugins
if /bin/sh ../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -I../lib -I../sasldb -I../include -I/opt/freeware/
include/openssl -Wall -W -g -O2 -MT digestmd5.lo -MD -MP -MF ".deps/digestmd5.Tpo" -c -o digestmd5.lo `test -f 'digestmd5.c' || echo './'`dig
estmd5.c; then mv ".deps/digestmd5.Tpo" ".deps/digestmd5.Plo"; else rm -f ".deps/digestmd5.Tpo"; exit 1; fi
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -I../lib -I../sasldb -I../include -I/opt/freeware/include/openssl -Wall -W -g -O2 -MT digestmd5.l
o -MD -MP -MF .deps/digestmd5.Tpo -c digestmd5.c -o digestmd5.o
digestmd5.c:279: warning: pointer targets in initialization differ in signedness
digestmd5.c: In function 'DigestCalcResponse':
digestmd5.c:366: warning: pointer targets in passing argument 2 of 'utils->MD5Update' differ in signedness
digestmd5.c: At top level:
digestmd5.c:812: error: syntax error before 'des_key_schedule'
digestmd5.c:812: warning: no semicolon at end of struct or union
digestmd5.c:813: warning: type defaults to 'int' in declaration of 'ivec'
digestmd5.c:813: warning: data definition has no type or storage class
digestmd5.c:814: error: syntax error before 'keysched2'
digestmd5.c:814: warning: type defaults to 'int' in declaration of 'keysched2'
digestmd5.c:814: warning: data definition has no type or storage class
digestmd5.c: In function 'dec_3des':
digestmd5.c:849: warning: implicit declaration of function 'des_ede2_cbc_encrypt'
digestmd5.c:852: error: dereferencing pointer to incomplete type
digestmd5.c:853: error: dereferencing pointer to incomplete type
digestmd5.c:854: error: dereferencing pointer to incomplete type
digestmd5.c:855: error: 'DES_DECRYPT' undeclared (first use in this function)
digestmd5.c:855: error: (Each undeclared identifier is reported only once
digestmd5.c:855: error: for each function it appears in.)
digestmd5.c:842: warning: unused parameter 'digest'
digestmd5.c: In function 'enc_3des':
digestmd5.c:900: error: dereferencing pointer to incomplete type
 
o, another point with

openssl-0.9.7d-1

Regards

Brian
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top