Re: [PHP-DEV] iconv, OS X and .dylib

2006-04-03 Thread Christian Stocker
On 4.4.2006 3:40 Uhr, Andrei Zmievski wrote: The problem is that SHLIB_SUFFIX_NAME is used for both bundles (.so) and dynamic libraries (.dylib) on Mac OS X. These are separate entities and need to be treated separately. We could probably set SHLIB_SUFFIX_NAME to .dylib on OSX and introduce a

Re: [PHP-DEV] iconv, OS X and .dylib

2006-04-03 Thread Andrei Zmievski
The problem is that SHLIB_SUFFIX_NAME is used for both bundles (.so) and dynamic libraries (.dylib) on Mac OS X. These are separate entities and need to be treated separately. We could probably set SHLIB_SUFFIX_NAME to .dylib on OSX and introduce an additional variable, something like BUNDL

[PHP-DEV] iconv, OS X and .dylib

2006-04-02 Thread Christian Stocker
Hi currently, iconv detection doesnt work on OS X (with 5_1), as it looks for iconv.so instead of iconv.dylib. The patch by andrei from last week broke that. http://cvs.php.net/viewcvs.cgi/php-src/acinclude.m4?r1=1.332.2.10&r2=1.332.2.11&pathrev=PHP_5_1 reverting it does help, but AFAICT and