Strange idea, but xxd -i filename would allow you to embed the patch files as a C char array. This would allow you to skip installing those patch files at the expense of storing text in the binary.
Or you could make a script to do the patching given the current source tree. Then you could just build the version of afl you want and distribute that alone.
Strange idea, but
xxd -i filenamewould allow you to embed the patch files as a C char array. This would allow you to skip installing those patch files at the expense of storing text in the binary.Or you could make a script to do the patching given the current source tree. Then you could just build the version of afl you want and distribute that alone.