This is a discussion on gettext.so within the PHP Language forums, part of the PHP Programming Forums category; Hi to all, I'm running php 5.2.5 on Debian etch, with apache 2.0.56. I need ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
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 |
|
|||
|
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. |
|
|||
|
"C. (http://symcbean.blogspot.com/)" <colin.mckinnon@gmail.com> ha scritto nel messaggio news:8bbfe8a8-2995-4975-9e3c-2161e349ad70@2g2000hsn.googlegroups.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 |