Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| eab41809a0 |
@@ -164,4 +164,3 @@ Donators
|
|||||||
* _Berwyn H_
|
* _Berwyn H_
|
||||||
* _bwitt_
|
* _bwitt_
|
||||||
* _Ismail_
|
* _Ismail_
|
||||||
* _Radon_
|
|
||||||
|
|||||||
+1
-1
@@ -37,7 +37,7 @@
|
|||||||
#define ACS_SERVER "http://adeactivate.adobe.com/adept"
|
#define ACS_SERVER "http://adeactivate.adobe.com/adept"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define LIBGOUROU_VERSION "0.8.7"
|
#define LIBGOUROU_VERSION "0.8.6"
|
||||||
|
|
||||||
namespace gourou
|
namespace gourou
|
||||||
{
|
{
|
||||||
|
|||||||
+10
-1
@@ -2,8 +2,17 @@
|
|||||||
|
|
||||||
# uPDFParser
|
# uPDFParser
|
||||||
if [ ! -d lib/updfparser ] ; then
|
if [ ! -d lib/updfparser ] ; then
|
||||||
git clone git://soutade.fr/soutade/updfparser.git lib/updfparser
|
git clone git://soutade.fr/updfparser.git lib/updfparser
|
||||||
pushd lib/updfparser
|
pushd lib/updfparser
|
||||||
make BUILD_STATIC=1 BUILD_SHARED=0
|
make BUILD_STATIC=1 BUILD_SHARED=0
|
||||||
popd
|
popd
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# OpenSSL legacy
|
||||||
|
if [ ! -d lib/openssl ] ; then
|
||||||
|
git clone --branch openssl-3.3 https://github.com/openssl/openssl.git lib/openssl
|
||||||
|
pushd lib/openssl
|
||||||
|
./Configure disable-apps disable-shared enable-legacy
|
||||||
|
make -j4
|
||||||
|
popd
|
||||||
|
fi
|
||||||
|
|||||||
+7
-14
@@ -859,21 +859,14 @@ namespace gourou
|
|||||||
std::string DRMProcessor::getDefaultAdeptDir(void)
|
std::string DRMProcessor::getDefaultAdeptDir(void)
|
||||||
{
|
{
|
||||||
#ifndef DEFAULT_ADEPT_DIR
|
#ifndef DEFAULT_ADEPT_DIR
|
||||||
const char* home = getenv("HOME");
|
const char* user = getenv("USER");
|
||||||
|
|
||||||
if (home)
|
|
||||||
return home + std::string("/.config/adept/");
|
|
||||||
else
|
|
||||||
{
|
|
||||||
const char* user = getenv("USER");
|
|
||||||
|
|
||||||
if (user && user[0])
|
if (user && user[0])
|
||||||
{
|
{
|
||||||
return std::string("/home/") + user + std::string("/.config/adept/");
|
return std::string("/home/") + user + std::string("/.config/adept/");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
return LOCAL_ADEPT_DIR;
|
return LOCAL_ADEPT_DIR;
|
||||||
}
|
|
||||||
#else
|
#else
|
||||||
return DEFAULT_ADEPT_DIR "/";
|
return DEFAULT_ADEPT_DIR "/";
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ CXXFLAGS=-Wall -fPIC -I$(ROOT)/include
|
|||||||
|
|
||||||
STATIC_DEP=
|
STATIC_DEP=
|
||||||
LDFLAGS += -L$(ROOT) -lcrypto -lzip -lz -lcurl -lpugixml
|
LDFLAGS += -L$(ROOT) -lcrypto -lzip -lz -lcurl -lpugixml
|
||||||
|
LDFLAGS += -L$(ROOT) $(ROOT)/lib/openssl/libcrypto.a -lzip -lz -lcurl -lpugixml
|
||||||
|
|
||||||
ifneq ($(STATIC_UTILS),)
|
ifneq ($(STATIC_UTILS),)
|
||||||
STATIC_DEP = $(ROOT)/libgourou.a
|
STATIC_DEP = $(ROOT)/libgourou.a
|
||||||
|
|||||||
Reference in New Issue
Block a user