2 # Determine if the given curl executable supports the 'openssl' SSL engine
5 print "Usage: $0 curl-executable\n";
8 if (!open(CURL
, "@ARGV[0] -s --engine list|"))
10 print "Can't get SSL engine list\n";
15 exit 0 if ( /openssl/ );
18 print "openssl engine not supported\n";