HAVE_STRCOLL problem

php.internals

Frank M. Kromann

21 years ago
Hello Everyone, HAVE_STRCOLL is defined in config.w32.h and used in zend_operators.h|c. This causes the string_locale_compare_function() to be undefined at link time. moving #define HAVE_STRCOLL 1 to zend_config.w32.h slves the problem. - Frank

Steph

21 years ago
No it doesn't, because there are other items in PHP that rely on HAVE_STRCOLL and need it to be defined where it currently is. So it needs to be redefined in zend_config.w32.h for Zend files, where this is its only occurrence.