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
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.
-----Original Message-----
From: Frank M. Kromann [mailto:frank@kromann.info]
Sent: 13 September 2004 19:46
To: internals@lists.php.net
Subject: [PHP-DEV] HAVE_STRCOLL problemHello 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