Difference between revisions of "Mosquitto from Source"

From Da Nerd Mage Wiki
Jump to navigation Jump to search
Line 5: Line 5:
'''<span style="color: rgb(132, 63, 161);" >The prerequisites:</span>'''
'''<span style="color: rgb(132, 63, 161);" >The prerequisites:</span>'''


* <code>apt install libc-ares-dev libwebsockets-dev libssl-dev xsltproc docbook-xsl</code>
* <code>apt install libc-ares-dev libwebsockets-dev libssl-dev xsltproc docbook-xsl libsystemd-dev libwrap0-dev openssl</code>
* #    '''cJSON'''
* #    '''cJSON'''
** <code>git clone <nowiki>https://github.com/DaveGamble/cJSON</nowiki></code>
** <code>git clone <nowiki>https://github.com/DaveGamble/cJSON</nowiki></code>

Revision as of 17:27, 1 March 2024

The required tools:

  • apt install git build-essential autoconf cmake

The prerequisites:

  • apt install libc-ares-dev libwebsockets-dev libssl-dev xsltproc docbook-xsl libsystemd-dev libwrap0-dev openssl
  • # cJSON
    • git clone https://github.com/DaveGamble/cJSON
    • cd cJSON
    • mkdir build
    • cd build
    • cmake ..
    • make
    • sudo make install
  • # uthash / utlist
    • git clone https://github.com/troydhanson/uthash
  • # pthreads
  • # built in?

Get the source:

  • git clone https://github.com/eclipse/mosquitto.git

Build it:

    • cp uthash/src/* mosquitto/include
  • cd mosquitto
  • make

Install it:

  • sudo make install

Use it: