Remove --enable-avcodec from build scripts, fix FFMPEG detection, do not link to avcodec or include avcodec headers if not detected

This commit is contained in:
Jonathan Campbell
2020-06-03 10:22:01 -07:00
parent 51a7023cd8
commit f351754bf3
9 changed files with 9 additions and 67 deletions

2
build
View File

@@ -19,6 +19,6 @@ echo Compiling our internal SDLnet 1.x
# now compile ourself
echo Compiling DOSBox-X
chmod +x configure
./configure --enable-core-inline --disable-debug --enable-avcodec --prefix=/usr "$@" || exit 1
./configure --enable-core-inline --disable-debug --prefix=/usr "$@" || exit 1
make -j3 || exit 1