Skip to content

Commit 8601352

Browse files
committed
updated install process
1 parent 7e14d71 commit 8601352

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

README.Ubuntu.txt

+29
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,39 @@ Start by prepping the system:
1212
sudo /usr/bin/mysql_secure_installation
1313

1414

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+
1521
Now perform all the steps in README.txt.
1622
========================================
1723

1824

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+
1948
Then make the environment import happen after each login:
2049
=========================================================
2150

bin/setup/03_install_perl_modules.sh

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ Email::MIME::Kit::Renderer::TT \
4848
Authen::SASL \
4949
String::Random \
5050
Facebook::Graph \
51+
Facebook::OpenGraph \
5152
Text::CSV_XS \
5253
Data::Serializer \
5354
Spawn::Safe \

0 commit comments

Comments
 (0)