Changeset ea878ba in buchla-emu for readme.txt


Ignore:
Timestamp:
08/01/2017 05:46:02 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
bdd5a63
Parents:
74c44d9
Message:

Added SDL_net for networking.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • readme.txt

    r74c44d9 rea878ba  
    2626  https://libsdl.org/
    2727
    28 The SDL2 website also hosts the SDL2_ttf project, which adds support
    29 for TrueType fonts to SDL2. SDL2_ttf, in turn, requires the FreeType
    30 library, which is available from the FreeType website:
     28The SDL2 website also hosts the SDL2_net and SDL2_ttf projects, which
     29add support for networking and TrueType fonts to SDL2
     30
     31SDL2_ttf, in turn, requires the FreeType library, which is available
     32from the FreeType website:
    3133
    3234  https://www.freetype.org/
     
    6769  make install
    6870
    69   # Build and install SDL2_ttf last
     71  # Build and install SDL2_ttf, now that we have FreeType and SDL2
    7072
    7173  tar zxvf SDL2_ttf-2.0.14.tar.gz
     
    7678  ../configure --prefix=/opt/sdl2 \
    7779    --with-sdl-prefix=/opt/sdl2 --with-freetype-prefix=/opt/sdl2
     80
     81  make
     82  make install
     83
     84  # Build and install SDL2_net last
     85
     86  tar zxvf SDL2_net-2.0.1.tar.gz
     87  cd SDL2_net-2.0.1
     88  mkdir build
     89  cd build
     90
     91  ../configure --prefix=/opt/sdl2 --with-sdl-prefix=/opt/sdl2
    7892
    7993  make
Note: See TracChangeset for help on using the changeset viewer.