all repos — fluxbox @ aabf32a1d908b2a07578d8e02aa1efc1879b6e5c

custom fork of the fluxbox windowmanager

README: Add information on cross-compiling for Windows
Ryan Pavlik rpavlik@iastate.edu
commit

aabf32a1d908b2a07578d8e02aa1efc1879b6e5c

parent

ea5f7b56ecceaa638133f406a954d324f8e720c6

1 files changed, 23 insertions(+), 0 deletions(-)

jump to
M READMEREADME

@@ -17,6 +17,29 @@ and then as root

# make install +Cross-Compile for Windows: + + You'll want mingw-cross-env installed, with libX11 and mingw-catgets built. + A configure line that works is: + $ ./configure \ + --prefix=/ \ + --host=i686-pc-mingw32 \ + --disable-imlib2 \ + --disable-xmb \ + --disable-slit \ + --disable-remember \ + --disable-toolbar \ + --disable-fribidi \ + --disable-nls \ + --disable-xft \ + LIBS="-lxcb -lXdmcp -lXau -lpthread -lws2_32" + + Then, build and install with + $ make install DESTDIR=$(pwd)/stage + + You can then copy the whole "stage" directory to a Windows machine and + run it on your choice of X server. + Thanks: Blackbox team