Compare commits

..

No commits in common. "906b8a37334ac5d37dcae24c7508a427c19dbb66" and "1abb470819c58f28b8ce9cf2d1692b8e0b251d0e" have entirely different histories.

4 changed files with 2 additions and 6 deletions

View file

@ -86,8 +86,6 @@ other variables are DESTDIR and PREFIX to handle destination install directory
Utils 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 First, add libgourou.so to your LD_LIBRARY_PATH
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD

View file

@ -37,7 +37,7 @@
#define ACS_SERVER "https://adeactivate.adobe.com/adept" #define ACS_SERVER "https://adeactivate.adobe.com/adept"
#endif #endif
#define LIBGOUROU_VERSION "0.8.10" #define LIBGOUROU_VERSION "0.8.9"
namespace gourou namespace gourou
{ {

View file

@ -31,6 +31,7 @@
#include <iostream> #include <iostream>
#include <algorithm> #include <algorithm>
#define _XOPEN_SOURCE 700
#include <stdio.h> #include <stdio.h>
#include <sys/types.h> #include <sys/types.h>
#include <dirent.h> #include <dirent.h>

View file

@ -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_HTTPHEADER, list);
curl_easy_setopt(curl, CURLOPT_COOKIEJAR, cookiejar); 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()) if (POSTData.size())
{ {
curl_easy_setopt(curl, CURLOPT_POST, 1L); curl_easy_setopt(curl, CURLOPT_POST, 1L);