>From 63512331bc4ed2da239211ccd444689688616722 Mon Sep 17 00:00:00 2001 From: Marc Hoersken <[email protected]> Date: Sun, 16 Mar 2014 19:39:41 +0100 Subject: [PATCH] configure: Display individual crypto backends on separate lines
This avoids line-wrapping in between parameters and makes the error message look like the following: configure: error: No crypto library found! Try --with-libssl-prefix=PATH or --with-libgcrypt-prefix=PATH or --with-wincng on Windows --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 8e52687..ba4dd7a 100644 --- a/configure.ac +++ b/configure.ac @@ -156,8 +156,8 @@ AM_CONDITIONAL(WINCNG, test "$ac_cv_libbcrypt" = "yes") # Check if crypto library was found if test "$found_crypto" = "none"; then AC_MSG_ERROR([No crypto library found! -Try --with-libssl-prefix=PATH\ - or --with-libgcrypt-prefix=PATH\ +Try --with-libssl-prefix=PATH + or --with-libgcrypt-prefix=PATH or --with-wincng on Windows\ ]) fi -- 1.8.1.msysgit.1
_______________________________________________ libssh2-devel http://cool.haxx.se/cgi-bin/mailman/listinfo/libssh2-devel
