| 12345678910111213141516171819202122232425262728293031323334353637 | AC_DEFUN([AM_PATH_OPENSSL],[AC_ARG_WITH([openssl-prefix],            [  --with-openssl-prefix=PREFIX  Prefix where OpenSSL installed (optional)],            [openssl_prefix=$withval],            [openssl_prefix=""])if test "x$openssl_prefix" = "x"; then  openssl_prefix="/usr/local"fiopenssl_prefix_lib=$openssl_prefix/libopenssl_prefix_include=$openssl_prefix/includeLIBS_save=$LIBSCPPFLAGS_save=$CPPFLAGSLIBS="-L$openssl_prefix_lib $LIBS"CPPFLAGS="-I$openssl_prefix_include $CPPFLAGS"AC_CHECK_LIB([ssl], [SSL_library_init], [have_openssl=yes])if test "x$have_openssl" = "xyes"; then  have_openssl=no  AC_CHECK_LIB([crypto], [main], [have_openssl=yes])  if test "x$have_openssl" = "xyes"; then    AC_DEFINE([HAVE_LIBSSL], [1], [Define to 1 if you have openssl.])    OPENSSL_LIBS="-L$openssl_prefix_lib -lssl -lcrypto"    OPENSSL_CFLAGS="-I$openssl_prefix_include"    AC_SUBST(OPENSSL_LIBS)    AC_SUBST(OPENSSL_CFLAGS)  fifiLIBS=$LIBS_saveCPPFLAGS=$CPPFLAGS_save])
 |