logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Building & Member Downloads View previous topic :: View next topic
Reply to topic   Topic: Compile apache with VS 2008 under Vista
Author
brolx



Joined: 14 Nov 2007
Posts: 3

PostPosted: Wed 14 Nov '07 18:41    Post subject: Compile apache with VS 2008 under Vista Reply with quote

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 ASF 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
Back to top


Reply to topic   Topic: Compile apache with VS 2008 under Vista View previous topic :: View next topic
Post new topic   Forum Index -> Building & Member Downloads