Beginner trying to compile ffmpeg on a PowerMac G4, Mac OS X 10.4.11, Xcode 2.5 for use on this Mac (not iOS).
I started out with Stephen Jungels tutorial (link), although it doesn't cover Mac OS X 10.4 per se. I install LAME, FAAC/FAAD and x264 without errors. All goes well until I use ./configure for ffmpeg:
./configure --enable-shared --enable-libmp3lame --enable-libfaac --enable-libx264 --enable-gpl --enable-nonfree
After some crunching, I get "Creating config.mak and config.h..." and an error "WARNING: GNU assembler not found, install gas-preprocessor". So I look for it online (https://github.com/yuvi/gas-preprocessor), move "gas-preprocessor.pl" to /usr/local/bin as instructed. Apparently it isn't doing anything, as repeated configure gives the same error. Having gas-preprocessor.pl in the ffmpeg dir doesn't seem to help either.
Am I missing something that I should be doing with gas-preprocessor.pl?