make rabbit optional with configure option

This commit is contained in:
toddouska
2012-10-22 17:28:46 -07:00
parent 3461c12083
commit aef97af361
9 changed files with 60 additions and 76 deletions

View File

@@ -23,7 +23,6 @@ src_libcyassl_la_SOURCES = \
ctaocrypt/src/dh.c \
ctaocrypt/src/dsa.c \
ctaocrypt/src/arc4.c \
ctaocrypt/src/rabbit.c \
ctaocrypt/src/pwdbased.c \
ctaocrypt/src/logging.c \
ctaocrypt/src/memory.c
@@ -56,6 +55,10 @@ if BUILD_HC128
src_libcyassl_la_SOURCES += ctaocrypt/src/hc128.c
endif
if BUILD_RABBIT
src_libcyassl_la_SOURCES += ctaocrypt/src/rabbit.c
endif
if BUILD_NOINLINE
src_libcyassl_la_SOURCES += ctaocrypt/src/misc.c
endif