changeset 4049:2fa6dc0e0e27 HEAD

Don't print error if pkg-config isn't found.
author Timo Sirainen <tss@iki.fi>
date Fri, 24 Feb 2006 12:33:21 +0200
parents 9e2a96d7e9ae
children 41cb3921d869
files configure.in
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/configure.in	Fri Feb 24 12:24:11 2006 +0200
+++ b/configure.in	Fri Feb 24 12:33:21 2006 +0200
@@ -1198,7 +1198,7 @@
 have_ssl=no
 
 if test "$want_openssl" = "yes" && test "$have_ssl" = "no"; then
-  if pkg-config --exists openssl; then
+  if pkg-config --exists openssl 2>/dev/null; then
     PKG_CHECK_MODULES(SSL, openssl)
     CFLAGS="$CFLAGS $SSL_CFLAGS"
     have_openssl=yes