diff options
author | Bill Stoddard <stoddard@apache.org> | 1999-08-28 00:57:27 +0200 |
---|---|---|
committer | Bill Stoddard <stoddard@apache.org> | 1999-08-28 00:57:27 +0200 |
commit | cb7f073d26ae141aca76ce97a64adebbbe1e0a37 (patch) | |
tree | c2038228d6b7321eeb2caf282e1d15abc2c25c45 /httpd.dsp | |
parent | Reverse the unnecessary change to the interface of ap_parseHTTPdate() (diff) | |
download | apache2-cb7f073d26ae141aca76ce97a64adebbbe1e0a37.tar.xz apache2-cb7f073d26ae141aca76ce97a64adebbbe1e0a37.zip |
A bunch of changes to get the server compiling on WIN32. mod_cgi, mod_include,
mod_isapi and mod_so don't work so I am not making them. Moved a lot of code out
of multithread.* and into os.* (didn't want to add multithread to the new repository).
Much of this can be cleaned up when APR is stable.
And Dean's gonna but me for sure for the http_main hit. It's may be
possible to name a DLL entry point 'main()'. Just havent tried it yet.
Enjoy!
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83822 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'httpd.dsp')
-rw-r--r-- | httpd.dsp | 74 |
1 files changed, 43 insertions, 31 deletions
@@ -54,7 +54,7 @@ BSC32=bscmake.exe # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 os\win32\ApacheOSR\ApacheOS.lib regex\release\regex.lib ap\Release\ap.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ws2_32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 os\win32\ApacheOSR\ApacheOS.lib regex\release\regex.lib ap\Release\ap.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ws2_32.lib mswsock.lib /nologo /subsystem:windows /dll /machine:I386 !ELSEIF "$(CFG)" == "ApacheCore - Win32 Debug" @@ -80,7 +80,7 @@ BSC32=bscmake.exe # ADD BSC32 /nologo LINK32=link.exe # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 -# ADD LINK32 os\win32\ApacheOSD\ApacheOS.lib regex\debug\regex.lib ap\Debug\ap.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ws2_32.lib /nologo /subsystem:windows /dll /debug /machine:I386 +# ADD LINK32 os\win32\ApacheOSD\ApacheOS.lib regex\debug\regex.lib ap\Debug\ap.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ws2_32.lib mswsock.lib /nologo /subsystem:windows /dll /debug /machine:I386 # SUBTRACT LINK32 /map !ENDIF @@ -118,6 +118,10 @@ SOURCE=.\main\http_config.c # End Source File # Begin Source File +SOURCE=.\main\http_connection.c +# End Source File +# Begin Source File + SOURCE=.\main\http_core.c # End Source File # Begin Source File @@ -142,6 +146,14 @@ SOURCE=.\main\http_vhost.c # End Source File # Begin Source File +SOURCE=.\os\win32\iol_socket.c +# End Source File +# Begin Source File + +SOURCE=.\main\listen.c +# End Source File +# Begin Source File + SOURCE=.\modules\standard\mod_access.c # End Source File # Begin Source File @@ -166,10 +178,6 @@ SOURCE=.\modules\standard\mod_autoindex.c # End Source File # Begin Source File -SOURCE=.\modules\standard\mod_cgi.c -# End Source File -# Begin Source File - SOURCE=.\modules\standard\mod_dir.c # End Source File # Begin Source File @@ -182,14 +190,6 @@ SOURCE=.\modules\standard\mod_imap.c # End Source File # Begin Source File -SOURCE=.\modules\standard\mod_include.c -# End Source File -# Begin Source File - -SOURCE=.\os\win32\mod_isapi.c -# End Source File -# Begin Source File - SOURCE=.\modules\standard\mod_log_config.c # End Source File # Begin Source File @@ -206,10 +206,6 @@ SOURCE=.\modules\standard\mod_setenvif.c # End Source File # Begin Source File -SOURCE=.\modules\standard\mod_so.c -# End Source File -# Begin Source File - SOURCE=.\modules\standard\mod_userdir.c # End Source File # Begin Source File @@ -218,10 +214,6 @@ SOURCE=.\os\win32\modules.c # End Source File # Begin Source File -SOURCE=.\os\win32\multithread.c -# End Source File -# Begin Source File - SOURCE=.\os\win32\readdir.c # End Source File # Begin Source File @@ -234,10 +226,6 @@ SOURCE=.\main\rfc1413.c # End Source File # Begin Source File -SOURCE=.\os\win32\service.c -# End Source File -# Begin Source File - SOURCE=.\main\util.c # End Source File # Begin Source File @@ -260,6 +248,10 @@ SOURCE=.\main\util_uri.c SOURCE=.\os\win32\util_win32.c # End Source File +# Begin Source File + +SOURCE=.\modules\mpm\winnt\winnt.c +# End Source File # End Group # Begin Group "Header Files" @@ -274,6 +266,18 @@ SOURCE=.\include\ap.h # End Source File # Begin Source File +SOURCE=.\include\ap_hooks.h +# End Source File +# Begin Source File + +SOURCE=.\include\ap_iol.h +# End Source File +# Begin Source File + +SOURCE=.\include\ap_listen.h +# End Source File +# Begin Source File + SOURCE=.\include\ap_md5.h # End Source File # Begin Source File @@ -310,6 +314,10 @@ SOURCE=.\include\http_config.h # End Source File # Begin Source File +SOURCE=.\include\http_connection.h +# End Source File +# Begin Source File + SOURCE=.\include\http_core.h # End Source File # Begin Source File @@ -338,11 +346,15 @@ SOURCE=.\include\httpd.h # End Source File # Begin Source File +SOURCE=.\os\win32\iol_socket.h +# End Source File +# Begin Source File + SOURCE=.\modules\standard\mod_mime.h # End Source File # Begin Source File -SOURCE=.\include\multithread.h +SOURCE=.\modules\mpm\winnt\mpm_default.h # End Source File # Begin Source File @@ -362,10 +374,6 @@ SOURCE=.\include\rfc1413.h # End Source File # Begin Source File -SOURCE=.\include\scoreboard.h -# End Source File -# Begin Source File - SOURCE=.\os\win32\service.h # End Source File # Begin Source File @@ -384,6 +392,10 @@ SOURCE=.\include\util_script.h SOURCE=.\include\util_uri.h # End Source File +# Begin Source File + +SOURCE=.\modules\mpm\winnt\winnt.h +# End Source File # End Group # Begin Group "Resource Files" |