summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2009-08-18 20:59:18 -0700
committerCraig Andrews <candrews@integralblue.com>2009-08-21 16:01:51 -0400
commit5c21a371d61b4cd3dd125f2c43aa80c52c9c316d (patch)
tree4681bcf98b597d3c8405ed7a418d009bf5ab03ef /install.php
parent871903a319aab5704504991208d992fadb72fdf7 (diff)
Include php-gettext 1.0.7 into extlibs; loading it up if native gettext extension is not present.
This provides a pure PHP implementation of the gettext functions. This should help get laconica running on shared hosting environments where PHP's gettext module may not be installed. Also gets us one step closer to running on Mac OS X 10.5 with Apple's preinstalled PHP, which doesn't provide an easy way to add modules. Source: http://savannah.nongnu.org/projects/php-gettext Copyright (c) 2005 Steven Armstrong <sa at c-area dot ch> GPLv2 or later
Diffstat (limited to 'install.php')
-rw-r--r--install.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/install.php b/install.php
index 9bcee275f..c13f70272 100644
--- a/install.php
+++ b/install.php
@@ -49,8 +49,7 @@ function checkPrereqs()
}
$reqs = array('gd', 'curl',
- 'xmlwriter', 'mbstring',
- 'gettext');
+ 'xmlwriter', 'mbstring');
foreach ($reqs as $req) {
if (!checkExtension($req)) {