diff --git a/README.md b/README.md index 9a576df..41c1dbe 100644 --- a/README.md +++ b/README.md @@ -86,8 +86,6 @@ other variables are DESTDIR and PREFIX to handle destination install directory Utils ----- -!!Warning!! : When activating a new device (with _adept\_activate_), Adobe ID accounts are deprecated. You need to sign in with a (dts) ByteBooks account. - First, add libgourou.so to your LD_LIBRARY_PATH export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD diff --git a/include/libgourou.h b/include/libgourou.h index 292ebbb..d506494 100644 --- a/include/libgourou.h +++ b/include/libgourou.h @@ -37,7 +37,7 @@ #define ACS_SERVER "https://adeactivate.adobe.com/adept" #endif -#define LIBGOUROU_VERSION "0.8.10" +#define LIBGOUROU_VERSION "0.8.9" namespace gourou { diff --git a/utils/adept_loan_mgt.cpp b/utils/adept_loan_mgt.cpp index e01907c..bb938d2 100644 --- a/utils/adept_loan_mgt.cpp +++ b/utils/adept_loan_mgt.cpp @@ -31,6 +31,7 @@ #include #include +#define _XOPEN_SOURCE 700 #include #include #include diff --git a/utils/drmprocessorclientimpl.cpp b/utils/drmprocessorclientimpl.cpp index 214b757..2512fb8 100644 --- a/utils/drmprocessorclientimpl.cpp +++ b/utils/drmprocessorclientimpl.cpp @@ -261,9 +261,6 @@ std::string DRMProcessorClientImpl::sendHTTPRequest(const std::string& URL, cons curl_easy_setopt(curl, CURLOPT_HTTPHEADER, list); curl_easy_setopt(curl, CURLOPT_COOKIEJAR, cookiejar); - if (getenv("SSL_CERT_FILE") != NULL) - curl_easy_setopt(curl, CURLOPT_CAINFO, getenv("SSL_CERT_FILE")); - if (POSTData.size()) { curl_easy_setopt(curl, CURLOPT_POST, 1L);