User:Necktrox: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Added self compiled binaries for sockets module)
mNo edit summary
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
<pageclass class="#ff8800" subcaption="Necktrox&rsquo;s Profile"></pageclass>
<pageclass class="#ff8800" subcaption="Necktrox&rsquo;s Profile"></pageclass>


== Socket module download ==
== Download and install socket module ==
These binaries are freshly baked for the commit [https://github.com/multitheftauto/multitheftauto-modules/commit/a23bf532477f03f70be6432b3b4b4d51f2949a11 a23bf532477f03f70be6432b3b4b4d51f2949a11].
You can read more about downloading and installing the sockets module here: [[Modules/Sockets]]
*[https://cdn.pixelvault.de/mta-modules/windows/x32/ml_sockets.dll Windows x32 ml_sockets.dll]
*[https://cdn.pixelvault.de/mta-modules/windows/x64/ml_sockets.dll Windows x64 ml_sockets.dll]
*[https://cdn.pixelvault.de/mta-modules/linux/x32/ml_sockets.so Linux x32 ml_sockets.so]
*[https://cdn.pixelvault.de/mta-modules/linux/x64/ml_sockets.so Linux x64 ml_sockets.so]


== Compile socket module on Ubuntu 15.10 (or on any Debian distro?)==
== Compile socket module on Ubuntu 15.10 (or on any Debian distro?)==
Line 35: Line 31:
$ ./build-64.sh
$ ./build-64.sh
</syntaxhighlight>
</syntaxhighlight>
== Contact ==
*[https://github.com/Necktrox GitHub Profile]
*[https://forum.mtasa.com/memberlist.php?mode=viewprofile&u=74045 Forum Profile]

Latest revision as of 23:32, 25 April 2018

Download and install socket module

You can read more about downloading and installing the sockets module here: Modules/Sockets

Compile socket module on Ubuntu 15.10 (or on any Debian distro?)

Install the necessary build tools, headers and libraries

$ sudo apt-get install git build-essential automake libtool lib32z1-dev g++-multilib

Clone the multitheftauto/multitheftauto-modules repository to your disk

$ git clone https://github.com/multitheftauto/multitheftauto-modules.git mta-modules

Change your directory to mta-modules/sockets

$ cd mta-modules/sockets

Make the shell scripts executable, so they can be ran from terminal

$ chmod a+x build-32.sh
$ chmod a+x build-64.sh

Build the x32/x64 libraries

$ ./build-32.sh
$ ./build-64.sh