I am installing aolserver and am upto the step of installing the aolserver nsopenssl-2.1.tar.gz
I read the following info in the forum
https://openacs.org/forums/message-view?message_id=92882
changed the makefile CFLAGS to
CFLAGS += -I$(OPENSSL)/include -I/usr/kerberos/include
and now start to make openasc
[root@fast01 nsopenssl-2.1]# make OPENSSL=/usr/share/ssl
gcc -I/usr/share/ssl/include -I/usr/kerberos/include -I../aolserver/include -D_REENTRANT=1 -DNDEBUG=1 -g -fPIC -Wall -Wno-unused -mcpu=i686 -DHAVE_CMMSG=1 -DUSE_FIONREAD=1 -DHAVE_COND_EINTR=1 -c -o thread.o thread.c
thread.c:42:2: #error "OpenSSL was not compiled with thread support!"
make: *** [thread.o] Error 1
[root@fast01 nsopenssl-2.1]#
Opps it doesnt work. The goods news is it appears to be solved by Lachlan Myers by doing this:
./config --prefix=/usr --openssldir=/usr/local/openssl threads -D_REENTRANT
make CC="gcc -fPIC"
...sorry to ask dumb questions, but ./config doesnt work as it is not compile yet. What exactly do I need to do to compile openssl ?