Hello,
I'm trying to build Apache 2.2.4 with VS 2008 Beta 2 (under Vista to
make it simple), and I have a problem.
I patched several stuff to have it compile nicely, but the program
crashes at startup: "An unhandled non-continuable exception was thrown
during process load. The program '[4636] httpd.exe: Native' has exited
with code -1073741701 (0xc000007b)."
Everything is compiled in native code (I migrated the defaults projects
to VC2008 ones), and I added MSVCR90*.dll to my apache/bin directory.
Any idea ?
For info, here are the changes I did in the sources:
APR - apr.h
-----------
81: #define _WIN32_WINNT 0x0600
220: #define APR_HAVE_IPV6 1
APR - network/multicast.c
-------------------------
136: #if defined(MCAST_JOIN_SOURCE_GROUP) || (_WIN32_WINNT >= 0x0600)
148: #if defined(MCAST_JOIN_SOURCE_GROUP) || (_WIN32_WINNT >= 0x0600)
APR - misc/win32/rand.c (others?)
-----------------------
#include <windows.h>
#include <win....h>
after #include "..."
libxml - config.h
-----------------
90:
# if _MSC_VER < 1500
# define vsnprintf(b,c,f,a) _vsnprintf(b,c,f,a)
# endif
libxml - wsockcompat.h
----------------------
24: //#define HAVE_GETADDRINFO
--
Thanks,
Regards,
Nick