Greetings. I'm trying to build debian packages that contain only AES and IDEA. As I understand, engine is also required so I did not disable that in debian/rules. For some reason I'm getting:
gcc -I.. -I../include -DOPENSSL_THREADS -D_REENTRANT -DL_ENDIAN -DTERMIO -O3 -Wa,--noexecstack -g -Wall -c -o igetest.o igetest.c In file included from igetest.c:52: ../include/openssl/aes.h:58:2: error: #error AES is disabled. make[2]: *** [igetest.o] Error 1 make[2]: Leaving directory `/usr/local/src/openssl/openssl-0.9.8e/test' make[1]: *** [tests] Error 2 make[1]: Leaving directory `/usr/local/src/openssl/openssl-0.9.8e' make: *** [build] Error 2 My rules look like: CONFARGS = --prefix=/usr --openssldir=/usr/lib/ssl no-asm no-dso no-zlib no-krb5 \ no-hw no-bf no-cast no-dh no-md2 no-mdc2 no-rc2 no-rc4 no-rc5 no-rijndael no-ede \ no-ede3 no-cbc no-cfb no-ofb no-ecb no-md4 no-rmd160 no-cast5 no-dsa Any help on what I'm doing wrong is greatly appreciated! Many thanks.