#1: gettext.so
Posted on 2008-04-16 00:55:25 by paolob
Hi to all,
I'm running php 5.2.5 on Debian etch, with apache 2.0.56.
I need to include, in php.ini, gettext.so library but I didn't find
anything.
I've already install:
apt-get install gettext
apt-get install php-gettext
apt-get install php5-cli
apt-get install php5 php5-common
and so on.
I'm sure to have installed everything but gettext.so still missing.
I tried, also, to compile php 5.2.5 from source, but when running
../configure, it breaks
with this error:
configure: error: no acceptable cc found in $PATH.
I'm going crazy. Where find the gettext.so extension ?
TIA,
paolob
Report this message |
#2: Re: gettext.so
Posted on 2008-04-16 13:42:27 by colin.mckinnon
On 15 Apr, 23:55, "paolob" <superpablito--no...@inwind.it> wrote:
> Hi to all,
> I'm running php 5.2.5 on Debian etch, with apache 2.0.56.
> I need to include, in php.ini, gettext.so library but I didn't find
> anything.
> I've already install:
>
> apt-get install gettext
> apt-get install php-gettext
> apt-get install php5-cli
> apt-get install php5 php5-common
>
> and so on.
I'm not specifically familiar with gettext nor debian, but...
What files did 'apt-get install gettext' create? Maybe it added
gettext.so but in a directory not referenced by ld.co.conf. Maybe it
installed the lib using a version number number in the name (fix by
creating a symlink).
On my nearest Linux box (RedHat) the gettext package doesn't have a
gettext.so - it does have a /usr/lib/libgettextlib-0.14.6.so,
libgettextsrc-0.14.6.so and preloadable_libintl.so
Have you tried running a trace on the CLI gettext?
> I'm sure to have installed everything but gettext.so still missing.
> I tried, also, to compile php 5.2.5 from source, but when running
> ./configure, it breaks
> with this error:
> configure: error: no acceptable cc found in $PATH.
>
You don't have a C compiler installed
C.
Report this message |
#3: Re: gettext.so
Posted on 2008-04-18 15:46:27 by paolob
"C. (http://symcbean.blogspot.com/)" <colin.mckinnon@gmail.com> ha scritto
nel messaggio
news:8bbfe8a8-2995-4975-9e3c-2161e349ad70@2g2000hsn.googlegr oups.com...
> On 15 Apr, 23:55, "paolob" <superpablito--no...@inwind.it> wrote:
>> Hi to all,
>> I'm running php 5.2.5 on Debian etch, with apache 2.0.56.
>> I need to include, in php.ini, gettext.so library but I didn't find
>> anything.
> On my nearest Linux box (RedHat) the gettext package doesn't have a
> gettext.so - it does have a /usr/lib/libgettextlib-0.14.6.so,
> libgettextsrc-0.14.6.so and preloadable_libintl.so
>
> Have you tried running a trace on the CLI gettext?
>
no, i didn't, but i'll try your issue. i think you've right finding the
library inside
/usr/lib/
thank you,
paolob
Report this message |