gettext.so

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • paolob

    gettext.so

    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



  • C. (http://symcbean.blogspot.com/)

    #2
    Re: gettext.so

    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_lib intl.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.

    Comment

    • paolob

      #3
      Re: gettext.so


      "C. (http://symcbean.blogsp ot.com/)" <colin.mckinnon @gmail.comha scritto
      nel messaggio
      news:8bbfe8a8-2995-4975-9e3c-2161e349ad70@2g 2000hsn.googleg roups.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_lib intl.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


      Comment

      Working...