mirror of
https://github.com/irssi/irssi.git
synced 2024-10-27 05:20:20 -04:00
Do not invoke pkg-config to check that openssl is present,
PKG_CHECK_MODULES does it for us. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4567 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
5a433f4359
commit
92035b9fb6
@ -338,8 +338,8 @@ LIBS="$LIBS $GLIB_LIBS"
|
||||
|
||||
have_openssl=no
|
||||
if test "$enable_ssl" = "yes"; then
|
||||
if pkg-config --exists openssl; then
|
||||
PKG_CHECK_MODULES(SSL, openssl)
|
||||
PKG_CHECK_MODULES(SSL, openssl, :, :)
|
||||
if test "$SSL_LIBS"; then
|
||||
CFLAGS="$CFLAGS $SSL_CFLAGS"
|
||||
have_openssl=yes
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user