In message: <[EMAIL PROTECTED]> Ben Taylor <[EMAIL PROTECTED]> writes: : Start with the configure script and Makefiles, and any very specfic, targeted : and small patches and let those changes slowly propogate out.
Most of the FreeBSD ports patches are relatively easy to justify and explain. For example, FreeBSD port system defines SDL_CONFIG in a way that's overridable. There's a patch that looks like: Index: qemu/configure @@ -204,7 +204,7 @@ if test -z "$sdl" ; then -sdl_config="sdl-config" +sdl_config="${SDL_CONFIG}" sdl=no sdl_static=no which is straight forward enought, but still wrong... It should be: Index: qemu/configure @@ -204,7 +204,7 @@ if test -z "$sdl" ; then -sdl_config="sdl-config" +sdl_config="${SDL_CONFIG:-sdl-config}" sdl=no sdl_static=no to still work on non-FreeBSD systems or on FreeBSD systems not using the ports.... There's a lot of niggles like this, however... Warner _______________________________________________ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel