File tree 2 files changed +30
-0
lines changed
2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,39 @@ Start by prepping the system:
12
12
sudo /usr/bin/mysql_secure_installation
13
13
14
14
15
+ Add these to your environment:
16
+
17
+ export OPENSSL_PREFIX=/usr/bin/openssl
18
+ export LD_LIBRARY_PATH=/usr/lib:/usr/lib/x86_64-linux:$LD_LIBRARY_PATH
19
+
20
+
15
21
Now perform all the steps in README.txt.
16
22
========================================
17
23
18
24
25
+ If some perl modules fail:
26
+ ==========================
27
+
28
+ XML::LibXML might fail due to incompatibility with libxml 2.9.10 so download 2.9.4 and build with:
29
+
30
+ ./configure --prefix=/data/apps
31
+ make
32
+ make install
33
+
34
+ Net::SSLeay might fail. You may have to install it manually:
35
+
36
+ wget https://cpan.metacpan.org/authors/id/C/CH/CHRISN/Net-SSLeay-1.88.tar.gz
37
+ tar xfz Net-SSLeay-1.88.tar.gz
38
+ cd Net-SSLeay-1.88
39
+ OPENSSL_PREFIX=/usr/bin/openssl LD_LIBRARY_PATH=/usr/lib/x86_64-linux:$LD_LIBRARY_PATH perl Makefile.PL
40
+ make
41
+ make install
42
+
43
+
44
+
45
+
46
+
47
+
19
48
Then make the environment import happen after each login:
20
49
=========================================================
21
50
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ Email::MIME::Kit::Renderer::TT \
48
48
Authen::SASL \
49
49
String::Random \
50
50
Facebook::Graph \
51
+ Facebook::OpenGraph \
51
52
Text::CSV_XS \
52
53
Data::Serializer \
53
54
Spawn::Safe \
You can’t perform that action at this time.
0 commit comments