I've written a custom PHP extension on Windoze using Visual C++ 6.0.
I'm using the latest source, 4.3.2, and have the environment setup correctly.
When I compile however, the compiler cannot find strings.h. Ive searched my system, and I indeed don't have strings.h (duh), but I do have string.h in the VC98/include directory.
The part of the code causing the error is in php_config.h:
<pre>
#ifdef HAVE_STRING_H
# include <string.h>
#else
# include <strings.h>
#endif
</pre>
Where can I find strings.h, do I need to d/l a developer pack or something for Win32?
-- Adam Kinder Project Director, WeHaveIssues.net Lead Developer, Square Network 1-888-208-4981 www.square-network.com
-- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php