Gert Doering wrote: > I'll try to figure out how to setup a cross-compile environment > during next week,
Some Linux distributions have premade mingw packages. In Gentoo building a toolchain for mingw is as simple as: emerge crossdev && crossdev -t i686-mingw32 On other distributions you might benefit from Dan Kegel's crosstool: http://kegel.com/crosstool/ Then run ./configure --host=i686-mingw32 && make in the OpenVPN source tree to build using the cross-toolchain. //Peter