Merge branch 'fixes'

This commit is contained in:
Roger A. Light 2015-12-21 11:32:53 +00:00
commit 646e0a0c32
12 changed files with 12 additions and 11 deletions

View File

@ -11,7 +11,7 @@ project(mosquitto)
cmake_minimum_required(VERSION 2.8)
# Only for version 3 and up. cmake_policy(SET CMP0042 NEW)
set (VERSION 1.4.6)
set (VERSION 1.4.7)
if (WIN32)
execute_process(COMMAND cmd /c echo %DATE% %TIME% OUTPUT_VARIABLE TIMESTAMP

View File

@ -1,3 +1,10 @@
1.4.7 - 20151221
================
Broker:
- Fix support for libwebsockets 1.22.
1.4.6 - 20151220
================

View File

@ -83,7 +83,7 @@ WITH_SOCKS:=yes
# Also bump lib/mosquitto.h, CMakeLists.txt,
# installer/mosquitto.nsi, installer/mosquitto-cygwin.nsi
VERSION=1.4.6
VERSION=1.4.7
TIMESTAMP:=$(shell date "+%F %T%z")
# Client library SO version. Bump if incompatible API/ABI changes are made.

View File

@ -7,7 +7,7 @@
!define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"'
Name "mosquitto"
!define VERSION 1.4.6
!define VERSION 1.4.7
OutFile "mosquitto-${VERSION}-install-cygwin.exe"
InstallDir "$PROGRAMFILES\mosquitto"

View File

@ -9,7 +9,7 @@
!define env_hklm 'HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"'
Name "mosquitto"
!define VERSION 1.4.6
!define VERSION 1.4.7
OutFile "mosquitto-${VERSION}-install-win32.exe"
InstallDir "$PROGRAMFILES\mosquitto"

View File

@ -45,7 +45,7 @@ extern "C" {
#define LIBMOSQUITTO_MAJOR 1
#define LIBMOSQUITTO_MINOR 4
#define LIBMOSQUITTO_REVISION 6
#define LIBMOSQUITTO_REVISION 7
/* LIBMOSQUITTO_VERSION_NUMBER looks like 1002001 for e.g. version 1.2.1. */
#define LIBMOSQUITTO_VERSION_NUMBER (LIBMOSQUITTO_MAJOR*1000000+LIBMOSQUITTO_MINOR*1000+LIBMOSQUITTO_REVISION)

View File

@ -68,7 +68,6 @@ Contributors:
extern unsigned long g_pub_msgs_sent;
# endif
# ifdef WITH_WEBSOCKETS
# include <lws_config.h>
# include <libwebsockets.h>
# endif
#else

View File

@ -37,7 +37,6 @@ Contributors:
#include <time.h>
#ifdef WITH_WEBSOCKETS
# include <lws_config.h>
# include <libwebsockets.h>
#endif

View File

@ -43,7 +43,6 @@ Contributors:
#include <tcpd.h>
#endif
#ifdef WITH_WEBSOCKETS
# include <lws_config.h>
# include <libwebsockets.h>
#endif

View File

@ -21,7 +21,6 @@ Contributors:
#include <stdio.h>
#ifdef WITH_WEBSOCKETS
# include <lws_config.h>
# include <libwebsockets.h>
# if defined(LWS_LIBRARY_VERSION_NUMBER)

View File

@ -32,7 +32,6 @@ Contributors:
#endif
#ifdef WITH_WEBSOCKETS
# include <lws_config.h>
# include <libwebsockets.h>
#endif

View File

@ -29,7 +29,6 @@ POSSIBILITY OF SUCH DAMAGE.
#ifdef WITH_WEBSOCKETS
#include <lws_config.h>
#include <libwebsockets.h>
#include "mosquitto_internal.h"
#include "mosquitto_broker.h"