KxSystems / mqtt

MQTT messaging protocol interface
https://code.kx.com/q/interfaces
Apache License 2.0
9 stars 12 forks source link

Revert "WIP: Enable last will" #40

Closed nmcdonnell-kx closed 3 years ago

nmcdonnell-kx commented 3 years ago

Reverts KxSystems/mqtt#39 One problem - the mac build is failing on Travis. The problem is the use of strndup which I believe is a GNU extension that isn't support on earlier OS X builds. We could bump the travis OS X image (as is done by arrowkdb) but it's probably easier to change the strndup to a malloc + memcpy (or just use plain strdup if the strings don't contain \0 chars)