added mailing list archive link
[platform/upstream/cryptsetup.git] / configure.in
index d0eb22f..cfa8f7f 100644 (file)
@@ -1,5 +1,5 @@
 AC_PREREQ([2.67])
-AC_INIT([cryptsetup],[1.2.0-rc1])
+AC_INIT([cryptsetup],[1.2.0])
 
 dnl library version from <major>.<minor>.<release>[-<suffix>]
 LIBCRYPTSETUP_VERSION=$(echo $PACKAGE_VERSION | cut -f1 -d-)
@@ -39,9 +39,6 @@ AC_CHECK_LIB(uuid, uuid_clear, ,[AC_MSG_ERROR('You need the uuid library')])
 AC_SUBST(UUID_LIBS, $LIBS)
 LIBS=$saved_LIBS
 
-
-AM_PATH_LIBGCRYPT(1.1.42,,[AC_MSG_ERROR('You need the gcrypt library')])
-
 AC_CHECK_FUNCS([posix_memalign])
 
 AC_C_CONST
@@ -65,16 +62,75 @@ AC_SUBST(POPT_LIBS, $LIBS)
 LIBS=$saved_LIBS
 
 dnl ==========================================================================
+dnl Crypto backend functions
+
+AC_DEFUN([CONFIGURE_GCRYPT], [
+       AM_PATH_LIBGCRYPT(1.1.42,,[AC_MSG_ERROR('You need the gcrypt library')])
+
+       if test x$enable_static_cryptsetup = xyes; then
+               saved_LIBS=$LIBS
+               LIBS="$saved_LIBS $LIBGCRYPT_LIBS -static"
+               AC_CHECK_LIB(gcrypt, gcry_check_version,,
+                       AC_MSG_ERROR([Cannot find static gcrypt library.]),
+                       [-lgpg-error])
+               LIBGCRYPT_STATIC_LIBS="$LIBGCRYPT_LIBS -lgpg-error"
+               LIBS=$saved_LIBS
+        fi
+
+       CRYPTO_CFLAGS=$LIBGCRYPT_CFLAGS
+       CRYPTO_LIBS=$LIBGCRYPT_LIBS
+       CRYPTO_STATIC_LIBS=$LIBGCRYPT_STATIC_LIBS
+])
+
+AC_DEFUN([CONFIGURE_OPENSSL], [
+       PKG_CHECK_MODULES([OPENSSL], [openssl >= 0.9.8],,
+               AC_MSG_ERROR('You need openssl library'))
+       CRYPTO_CFLAGS=$OPENSSL_CFLAGS
+       CRYPTO_LIBS=$OPENSSL_LIBS
+
+       if test x$enable_static_cryptsetup = xyes; then
+               saved_PKG_CONFIG=$PKG_CONFIG
+               PKG_CONFIG="$PKG_CONFIG --static"
+               PKG_CHECK_MODULES([OPENSSL], [openssl])
+               CRYPTO_STATIC_LIBS=$OPENSSL_LIBS
+               PKG_CONFIG=$saved_PKG_CONFIG
+       fi
+])
+
+AC_DEFUN([CONFIGURE_NSS], [
+       if test x$enable_static_cryptsetup = xyes; then
+               AC_MSG_ERROR([Static build of cryptsetup is not supported with NSS.]),
+       fi
+
+       AC_MSG_WARN([NSS backend does NOT provide backward compatibility (missing ripemd160 hash).])
+
+       PKG_CHECK_MODULES([NSS], [nss],,
+               AC_MSG_ERROR('You need nss library'))
+       CRYPTO_CFLAGS=$NSS_CFLAGS
+       CRYPTO_LIBS=$NSS_LIBS
+])
+
+AC_DEFUN([CONFIGURE_KERNEL], [
+       AC_CHECK_HEADERS(linux/if_alg.h,,
+               [AC_MSG_ERROR('You need Linux kernel with userspace crypto interface.')])
+#      AC_CHECK_DECLS([AF_ALG],,
+#              [AC_MSG_ERROR('You need Linux kernel with userspace crypto interface.')],
+#              [#include <sys/socket.h>])
+
+])
+
+dnl ==========================================================================
 saved_LIBS=$LIBS
 
 AC_ARG_ENABLE([static-cryptsetup],
        AS_HELP_STRING([--enable-static-cryptsetup],
-       [enable build of static cryptsetup binary]), [
+       [enable build of static cryptsetup binary]))
+if test x$enable_static_cryptsetup = xyes; then
        if test x$enable_static = xno; then
                AC_MSG_WARN([Requested static cryptsetup build, enabling static library.])
                enable_static=yes
        fi
-       enable_static_cryptsetup=yes])
+fi
 AM_CONDITIONAL(STATIC_CRYPTSETUP, test x$enable_static_cryptsetup = xyes)
 
 AC_ARG_ENABLE(selinux,
@@ -106,17 +162,28 @@ if test "x$enable_udev" = xyes; then
 fi
 LIBS=$saved_LIBS
 
+dnl Crypto backend configuration.
+AC_ARG_WITH([crypto_backend],
+       AS_HELP_STRING([--with-crypto_backend=BACKEND], [crypto backend (gcrypt/openssl/nss/kernel) [gcrypt]]),
+       [], with_crypto_backend=gcrypt
+)
+case $with_crypto_backend in
+       gcrypt)  CONFIGURE_GCRYPT([]) ;;
+       openssl) CONFIGURE_OPENSSL([]) ;;
+       nss)     CONFIGURE_NSS([]) ;;
+       kernel)  CONFIGURE_KERNEL([]) ;;
+       *) AC_MSG_ERROR([Unknown crypto backend.]) ;;
+esac
+AM_CONDITIONAL(CRYPTO_BACKEND_GCRYPT,  test $with_crypto_backend = gcrypt)
+AM_CONDITIONAL(CRYPTO_BACKEND_OPENSSL, test $with_crypto_backend = openssl)
+AM_CONDITIONAL(CRYPTO_BACKEND_NSS,     test $with_crypto_backend = nss)
+AM_CONDITIONAL(CRYPTO_BACKEND_KERNEL,  test $with_crypto_backend = kernel)
+
 dnl Magic for cryptsetup.static build.
 if test x$enable_static_cryptsetup = xyes; then
        saved_PKG_CONFIG=$PKG_CONFIG
        PKG_CONFIG="$PKG_CONFIG --static"
 
-       LIBS="$saved_LIBS $LIBGCRYPT_LIBS -static"
-       AC_CHECK_LIB(gcrypt, gcry_check_version,,
-               AC_MSG_ERROR([Cannot find static gcrypt library.]),
-               [-lgpg-error])
-       LIBGCRYPT_STATIC_LIBS="$LIBGCRYPT_LIBS -lgpg-error"
-
        LIBS="$saved_LIBS -static"
        AC_CHECK_LIB(popt, poptGetContext,,
                AC_MSG_ERROR([Cannot find static popt library.]))
@@ -141,7 +208,11 @@ fi
 
 AC_SUBST([DEVMAPPER_LIBS])
 AC_SUBST([DEVMAPPER_STATIC_LIBS])
-AC_SUBST([LIBGCRYPT_STATIC_LIBS])
+
+AC_SUBST([CRYPTO_CFLAGS])
+AC_SUBST([CRYPTO_LIBS])
+AC_SUBST([CRYPTO_STATIC_LIBS])
+
 AC_SUBST([LIBCRYPTSETUP_VERSION])
 AC_SUBST([LIBCRYPTSETUP_VERSION_INFO])
 
@@ -184,7 +255,9 @@ dnl ==========================================================================
 AC_CONFIG_FILES([ Makefile
 lib/Makefile
 lib/libcryptsetup.pc
+lib/crypto_backend/Makefile
 lib/luks1/Makefile
+lib/loopaes/Makefile
 src/Makefile
 po/Makefile.in
 man/Makefile