From 2d4a5c992c622619ad9f3fa00276b83fa27d0a1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Soutad=C3=A9?= Date: Wed, 2 Sep 2026 16:21:52 +0200 Subject: [PATCH 1/4] Get ca-certificates.crt path from SSL_CERT_FILE env var if available --- utils/drmprocessorclientimpl.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/utils/drmprocessorclientimpl.cpp b/utils/drmprocessorclientimpl.cpp index 2512fb8..214b757 100644 --- a/utils/drmprocessorclientimpl.cpp +++ b/utils/drmprocessorclientimpl.cpp @@ -261,6 +261,9 @@ 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); From 06297aa6f093b8ef12a84e4a530af8f8dba81d3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Soutad=C3=A9?= Date: Wed, 2 Sep 2026 16:29:02 +0200 Subject: [PATCH 2/4] Add warning about new device activation (now require a ByteBooks account) --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 41c1dbe..9a576df 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,8 @@ 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 From c32230f27d86b03134d7c04f93ffe454cbd41e71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Soutad=C3=A9?= Date: Wed, 2 Sep 2026 16:41:07 +0200 Subject: [PATCH 3/4] Remove warning about _XOPEN_SOURCE --- utils/adept_loan_mgt.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/utils/adept_loan_mgt.cpp b/utils/adept_loan_mgt.cpp index bb938d2..e01907c 100644 --- a/utils/adept_loan_mgt.cpp +++ b/utils/adept_loan_mgt.cpp @@ -31,7 +31,6 @@ #include #include -#define _XOPEN_SOURCE 700 #include #include #include From 906b8a37334ac5d37dcae24c7508a427c19dbb66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Soutad=C3=A9?= Date: Wed, 2 Sep 2026 16:39:18 +0200 Subject: [PATCH 4/4] Update libgourou version to v0.8.10 --- include/libgourou.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/libgourou.h b/include/libgourou.h index d506494..292ebbb 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.9" +#define LIBGOUROU_VERSION "0.8.10" namespace gourou {