Adriaan de Jong wrote:
Content-Description: 07_polarssl_addition.patch.gz
> Add PolarSSL support to OpenVPN
> +++ b/configure.ac Wed Dec 08 12:35:42 2010 +0100
> @@ -273,14 +273,16 @@
> )
>
> AC_ARG_WITH([ssl-type],
> - [ --with-ssl-type=TYPE Build with the given SSL library, TYPE = openssl
> ],
> + [ --with-ssl-type=TYPE Build with the given SSL library, TYPE = openssl
> or polarssl ],
> [case "${withval}" in
> openssl) SSL_LIB=openssl ;;
> + polarssl) SSL_LIB=polarssl ;;
> *) AC_MSG_ERROR([bad value ${withval} for --with-ssl-type]) ;;
> esac],
> [SSL_LIB="openssl"]
> )
> AM_CONDITIONAL([USE_OPENSSL], [test x$SSL_LIB = xopenssl])
> +AM_CONDITIONAL([USE_POLARSSL], [test x$SSL_LIB = xpolarssl])
Again, I think --with-polarssl may be more common.
//Peter