summaryrefslogtreecommitdiff
path: root/doc/tips
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2008-01-22 01:38:43 -0500
committerJoey Hess <joey@kitenet.net>2008-01-22 01:38:43 -0500
commit10b7ccb13ce0e7756c8ea7162c8403a366171317 (patch)
treed5c4c60f59247970f21a7ec29a43650b13ef4850 /doc/tips
parent29f1e05072d323bbec4a99fc94db1bc72c937d03 (diff)
web commit by http://id.loopysoft.com/matt/
Diffstat (limited to 'doc/tips')
-rw-r--r--doc/tips/SharedHosting.mdwn15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/tips/SharedHosting.mdwn b/doc/tips/SharedHosting.mdwn
index d061b0c86..f16849169 100644
--- a/doc/tips/SharedHosting.mdwn
+++ b/doc/tips/SharedHosting.mdwn
@@ -174,6 +174,21 @@ DreamHost has a pretty installation and management GUI for SVN, but it means you
svn add *
svn commit -m "initial import"
+# Make installing OpenID not suck
+If you try to install the Net::OpenID::Consumer module, it takes forever (and for me, fails 90% of the time). Following the [tip found here](http://www.windley.com/archives/2007/04/speeding_up_cryptdh.shtml), installing the GMP (big math) plugin greatly speeds up the process and makes it, well, work for me. However, getting this to be used by Perl requires a few more steps. First, follow the directions [to install GMP](http://gmplib.org/) (grab the package and read the INSTALL doc), but the quick steps are :
+
+ ./configure --prefix=YOUR_INSTALL_PATH_HERE # use something like ${HOME}/usr/local/
+ make
+ make check
+ make install
+
+Then you'll have to add a few variables to your path [referenced by your compiled](http://www.psc.edu/general/software/packages/gcc/manual/gcc_36.html), namely :
+
+ export C_INCLUDE_PATH=/home/flophouse/perl/include/
+ export LIBRARY_PATH=/home/flophouse/perl/lib/
+
+Then you should be able to install the module, and it'll be faster.
+
# Why do I have to do all of this?
IANA Perl Expert. This is just what I found.