> Do you have any other ideas? I don't use Ubuntu, but I would... Clean the source directory to clear out any compiled object files, clear and set your CFLAGS and LDFLAGS again and try again: cd /path/to/wine/source make distclean unset CFLAGS unset LDFLAGS export CFLAGS="-m32" export LDFLAGS="-L./lib32" rm -f lib32 mkdir -p ./lib32 ln -s /usr/lib32/mesa/libGL.so.1 ./lib32/libGL.so ./configure --verbose make The page says "There is no need to specify the -m32 or an explicit gcc version in Lucid." No idea if that's true or not; it's worth a try with and without CFLAGS="-m32" set. -r