diff options
author | stbuehler <stbuehler@152afb58-edef-0310-8abb-c4023f1b3aa9> | 2015-09-18 15:15:18 +0000 |
---|---|---|
committer | stbuehler <stbuehler@152afb58-edef-0310-8abb-c4023f1b3aa9> | 2015-09-18 15:15:18 +0000 |
commit | 8b2630a82fbecfd57fa38aebb397a755936690e5 (patch) | |
tree | a9cfcd7bb5bea87d63fc8ef81c8456a130a249bc /doc/build-win32.txt | |
parent | e57c8295ebe92b58ca3e68fa8ea8f70d4b0b4cee (diff) | |
download | lighttpd-master.tar.gz |
git-svn-id: svn://svn.lighttpd.net/lighttpd/trunk@3041 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'doc/build-win32.txt')
-rw-r--r-- | doc/build-win32.txt | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/doc/build-win32.txt b/doc/build-win32.txt deleted file mode 100644 index e343c7d3..00000000 --- a/doc/build-win32.txt +++ /dev/null @@ -1,67 +0,0 @@ -Big thanks for Ben Harper (rogojin at gmail.com) for initial work and little help to get first setups. - - -Prerequisities: - -First you need build environment. I recommend to get Visual Studio Express C++ from Microsoft. -Then you need Platform SDK for Windows. - -CMake is used to build (http://www.cmake.org) - -And then you need few libraries to make Lighty work well: -pkg-config (prebuilt can be found at: http://www.gimp.org/~tml/gimp/win32/pkg-config-0.20.zip) - -libg-2.0 library (prebuilt can be found at: http://ftp.gtk.org/pub/glib/2.12/win32/) -Don't forget to download dependencies also! - -PCRE library (Psyon provides prebuilt: http://www.psyon.org/projects/pcre-win32/index.php) - -ZLib (You can get one from http://www.zlib.net/ ) - -Current build doesn't support this yet, but good to know: - -OpenSSL (Shining Light Productions provides nice prebuilt set: http://www.slproweb.com/products/Win32OpenSSL.html) - -Install all libraries under same root, for example c:\sys\ - you need to separate PCRE .lib in "lib" dir, includes in "include" dir and - -Setting up environment: - -After installing you need few environments to setup. I recommend to make following batch files. -Update paths as propriate: - ----------------------------------------------------------------------------------------------------- - -cmakeenv.bat: - -@echo off - -set PATH=C:\sys\bin\;C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Bin;%PATH% -set INCLUDE=C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Include;%INCLUDE% -set LIB=C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\Lib;%LIB% -set PKG_CONFIG_PATH=c:\sys\lib\pkgconfig - - if not exist "C:\Program Files\Microsoft Visual Studio 8\VC\vcvarsall.bat" goto missing - echo call "C:\Program Files\Microsoft Visual Studio 8\VC\vcvarsall.bat" - call "C:\Program Files\Microsoft Visual Studio 8\VC\vcvarsall.bat" - goto :eof - - :missing - echo Missing file - echo "C:\Program Files\Microsoft Visual Studio 8\VC\vcvarsall.bat" - goto :eof - ----------------------------------------------------------------------------------------------------- - -configure.bat: - -SET CMAKE_INCLUDE_PATH=c:\sys\include -SET CMAKE_LIBRARY_PATH=c:\sys\lib - ----------------------------------------------------------------------------------------------------- - -Run from commandline: - -cmake -G"NMake Makefiles" . - -or run cmakesetup to use GUI... - |