The SDL forums have moved to discourse.libsdl.org.
This is just a read-only archive of the previous forums, to keep old links working.


SDL Forum Index
SDL
Simple Directmedia Layer Forums
Can't compile SDL_net on Ubuntu 16.04 64bit
Imants


Joined: 20 May 2016
Posts: 2
First I compile SDL2:

Code:

hg clone https://hg.libsdl.org/SDL SDL
cd SDL
mkdir build
cd build
../configure --prefix=/home/<user>/libs
make
make install


After SDL is successfully installed. I try to build SDL_net.

Code:

hg clone http://hg.libsdl.org/SDL_net SDL2_net
cd SDL2_net
mkdir build
cd build
../configure --prefix=/home/<user>/libs
make
make install


After make I got error

Code:

CDPATH="${ZSH_VERSION+.}:" && cd .. && /bin/bash /home/karlis/test/SDL2_net/missing aclocal-1.13
/home/karlis/test/SDL2_net/missing: line 81: aclocal-1.13: command not found
WARNING: 'aclocal-1.13' is missing on your system.
         You should only need it if you modified 'acinclude.m4' or
         'configure.ac' or m4 files included by 'configure.ac'.
         The 'aclocal' program is part of the GNU Automake package:
         <http://www.gnu.org/software/automake>
         It also requires GNU Autoconf, GNU m4 and Perl in order to run:
         <http://www.gnu.org/software/autoconf>
         <http://www.gnu.org/software/m4/>
         <http://www.perl.org/>
Makefile:458: recipe for target '../aclocal.m4' failed
make: *** [../aclocal.m4] Error 127


I have installed aclocal-1.15. What to do