mkvtoolnix/ac/curl.m4

15 lines
399 B
Plaintext
Raw Normal View History

2010-12-23 09:44:26 +00:00
dnl
dnl Check for libcurl
dnl
PKG_CHECK_MODULES([CURL], [libcurl], [curl_found=yes])
2010-12-23 09:44:26 +00:00
if test "$curl_found" = "yes"; then
opt_features_yes="$opt_features_yes\n * online update checks (via libcurl)"
AC_DEFINE(HAVE_CURL_EASY_H, 1, [define if libcurl is found via pkg-config])
2010-12-23 09:44:26 +00:00
else
opt_features_no="$opt_features_no\n * online update checks (via libcurl)"
CURL_CFLAGS=""
2010-12-23 09:44:26 +00:00
CURL_LIBS=""
fi