1
0
mirror of https://github.com/PDP-10/its.git synced 2026-02-26 17:03:20 +00:00

Update tv11 submodule.

The tvcon program needs SDL2 Net now.
This commit is contained in:
Lars Brinkhoff
2021-04-12 11:18:10 +02:00
parent 7909417114
commit 47e6988a51
3 changed files with 4 additions and 4 deletions

View File

@@ -60,7 +60,7 @@ installed.
| --- | --- |
| klh10 | git, c compiler, make, expect, curses, autoconf
| simh | git, c compiler, make, expect, curses, autoconf, sdl2
| pdp10-ka | git, c compiler, make, expect, curses, autoconf, sdl2, sdl2-image, gtk3
| pdp10-ka | git, c compiler, make, expect, curses, autoconf, sdl2, sdl2-image, sdl2-net, gtk3
| pdp10-kl | git, c compiler, make, expect, curses, autoconf, sdl2, sdl2-image, gtk3
### Usage

View File

@@ -15,7 +15,7 @@ install_linux() {
pdp10-k?) sudo apt-get install -y libegl1-mesa-dev libgles2-mesa-dev
sudo apt-get install -y libx11-dev libxt-dev libsdl2-dev
sudo apt-get install -y libsdl2-image-dev libpcap-dev
sudo apt-get install -y libgtk-3-dev;;
sudo apt-get install -y libgtk-3-dev libsdl2-net-dev;;
klh10) sudo apt-get install -y libusb-1.0-0-dev;;
esac
}
@@ -24,7 +24,7 @@ install_freebsd() {
pkg upgrade -y
pkg install -y gmake git expect
case "$EMULATOR" in
pdp10-ka) pkg install -y sdl2 sdl2_image pkgconf gtk3;;
pdp10-ka) pkg install -y sdl2 sdl2_image sdl2_net pkgconf gtk3;;
pdp10-kl) pkg install -y sdl2 pkgconf gtk3 autoconf;;
klh10) pkg install -y pkgconf autotools;;
esac