For the record... This is how you add gettext to OS X Lion
Installing ICU
Download ICU
Run these commands
tar xzvf icu4c-4_8_1-src.tgz
cd icu/source
./runConfigureICU MacOSX
make
sudo make install
Download PHP 5.3.6 sources
Run these commands
tar -zxf php-5.3.6.tar.gz
cd ext/intl
phpize
./configure --enable-intl
make
sudo cp modules/intl.so /usr/lib/php/extensions/no-debug-non-zts-20090626/
Put this in your php.ini file with
extension=intl.so
Installing Gettext
Download Gettext
Run these commands
tar -zxf gettext-0.18.1.1.tar.gz
cd gettext-0.18.1.1
Apple will not ship Gettext and Intl the problem is that Gettext apparently defines Stpncpy function, as does something in Lion.
You need to open gettext-tools/gnulib-lib/stpncpy.c and change all references of stpncpy to stpncpy2
Then run these commands
./configure
make
sudo make install
Go back to the PHP sources directory:
Run these commands
cd ext/gettext
phpize
./configure --with-gettext
make
sudo cp modules/gettext.so /usr/lib/php/extensions/no-debug-non-zts-20090626/
And add this to the php.ini file:
extension=gettext.so
References:
http://www.ittreats.com/os/php/php-with-intl-and-gettext-on-osx-lion-bertrand-mansion.html
php --ri gettext? – John Flatness Aug 16 '11 at 22:05Extension 'gettext' not present.Doh! Now to install gettext. – Shane Stillwell Aug 16 '11 at 22:12