• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

compile sever in liunx

LoOoZa

Member
Joined
Sep 18, 2017
Messages
68
Reaction score
6
i have old server xml 810 and i have source, i want compile it in linux but i get this error
Code:
./autogen.sh
./autogen.sh: 3: ./autogen.sh: aclocal: not found
./autogen.sh: 4: ./autogen.sh: autoconf: not found
./autogen.sh: 5: ./autogen.sh: autoheader: not found
./autogen.sh: 6: ./autogen.sh: automake: not found
 
You didn't say which Linux, so I'm assuming Debian or Ubuntu.

I believe this should get the needed packages: apt-get install automake
There may be more you need to install though.
 
Debian 8
Code:
aclocal: warning: autoconf input should be named 'configure.ac', not 'configure.in'
configure.in:72: warning: macro 'AM_PATH_XML2' not found in library
automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
configure.in:5: error: required directory ./config does not exist
configure.in:14: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated.  For more info, see:
configure.in:14: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation
cp: cannot create regular file ‘config/compile’: No such file or directory
configure.in:54: error: installing 'config/compile'
configure.in:54:     error while copying
cp: cannot create regular file ‘config/config.guess’: No such file or directory
configure.in:11: error: installing 'config/config.guess'
configure.in:11:     error while copying
cp: cannot create regular file ‘config/config.sub’: No such file or directory
configure.in:11: error: installing 'config/config.sub'
configure.in:11:     error while copying
cp: cannot create regular file ‘config/install-sh’: No such file or directory
configure.in:14: error: installing 'config/install-sh'
configure.in:14:     error while copying
cp: cannot create regular file ‘config/missing’: No such file or directory
configure.in:14: error: installing 'config/missing'
configure.in:14:     error while copying
cp: cannot create regular file ‘config/depcomp’: No such file or directory
Makefile.am: error: installing 'config/depcomp'
Makefile.am:     error while copying
automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
 
I'm sorry but I don't have any experience at all with those old servers. My best guess is that the source is written for an older version of automake but I have no idea which. Looks like you might be missing some XML library, but I just don't know.

I hope someone else will be able to help you further.

Edit: You could try installing libxml2 apt-get install libxml2 and create the config directory mkdir config and see where that gets you. The rest looks like mostly deprecation warnings.
 
Last edited:
now this error
Code:
aclocal: warning: autoconf input should be named 'configure.ac', not 'configure.in'
configure.in:72: warning: macro 'AM_PATH_XML2' not found in library
automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
configure.in:14: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated.  For more info, see:
configure.in:14: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation
automake: warning: autoconf input should be named 'configure.ac', not 'configure.in'
 
I'm curious, did you even do this OP?
apt install build-essential

You should not normally have to install automake manually.
 
Back
Top