en debian9 no compilará

This commit is contained in:
root 2022-10-06 11:24:23 +02:00
parent 05c9cbcb09
commit 912d5a1439
2 changed files with 0 additions and 8 deletions

View File

@ -3,7 +3,6 @@ Bash script to compile the most recent dosbox-x version on differents GNU+Linux
This script works on these distributions:
* OpenSuse 15.4 Leap
* Debian 9
* Debian 10
* Debian 11
* Arch Linux

View File

@ -15,13 +15,6 @@ if [ -f "/etc/arch-release" ]; then
bash build-debug-sdl2 ; make install; sleep 2; rm -rf $d
fi
# Debian 9
cat /etc/issue | grep "Debian GNU/Linux 9" 1>/dev/null ; if [ "$?" -ne 1 ]; then
apt update -y ; apt install automake git gcc g++ make libncurses-dev nasm libsdl-net1.2-dev libsdl2-net-dev libpcap-dev fluidsynth libfluidsynth-dev libavdevice58 libavformat-dev libavcodec-dev libavcodec-extra libavcodec-extra58 libswscale-dev libfreetype6-dev libxkbfile-dev libxrandr-dev -y
git clone "https://github.com/joncampbell123/dosbox-x" $d ; cd $d
bash build-debug-sdl2 ; make install ; sleep 2; rm -rf $d
fi
# Debian 10
cat /etc/issue | grep "Debian GNU/Linux 10" 1>/dev/null ; if [ "$?" -ne 1 ]; then
apt update -y ; apt install automake git gcc g++ make libncurses-dev nasm libsdl-net1.2-dev libsdl2-net-dev libpcap-dev fluidsynth libfluidsynth-dev libavdevice58 libavformat-dev libavcodec-dev libavcodec-extra libavcodec-extra58 libswscale-dev libfreetype6-dev libxkbfile-dev libxrandr-dev -y