Sources & DLLs
- ftp://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-0.9.12.tar.gz
- http://sourceforge.net/projects/plibc/files/plibc/0.1.5/plibc-0.1.5.zip/download
- http://downloads.sourceforge.net/project/mingw/MinGW/pthreads-w32/pthreads-w32-2.8.0-3/libpthread-2.8.0-3-mingw32-dll-2.tar.lzma
- http://ftp.acc.umu.se/pub/gnome/binaries/win32/dependencies/gnutls_2.4.2-1_win32.zip
- http://sourceforge.net/projects/mingw/files/MinGW/gettext/gettext-0.17-1/libintl-0.17-1-mingw32-dll-8.tar.lzma/download

Compile
- ./configure
- make

Create import library (or use provided one)

Open Visual Studio 2010 Command Prompt
1) >DUMPBIN /EXPORTS libmicrohttpd.dll.a > def.txt
2) change def.txt into libmicrohttpd.dll.def with the following contents:
EXPORTS
	all symbols from def.txt, remove first underscores from symbols
3) >LIB /machine:X86 /def:libmicrohttpd.dll.def /name:libmicrohttpd-10.dll
