From 7dd1004b9347f95cf9a93e49c76e60816b53fa3a Mon Sep 17 00:00:00 2001 From: Alexander Alashkin <alexander.alashkin@cesanta.com> Date: Wed, 6 Apr 2016 08:58:27 +0200 Subject: [PATCH] Fix mg examples PUBLISHED_FROM=dec3ce8a13ff588637601cdb03dbe6196468ba4a --- examples/http_client/Makefile | 2 +- examples/mqtt_broker/Makefile | 2 +- examples/mqtt_client/Makefile | 2 +- examples/multithreaded_restful_server/Makefile | 2 +- examples/netcat/Makefile | 2 +- examples/restful_server_s3/Makefile | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/http_client/Makefile b/examples/http_client/Makefile index c801491ab..f1042eb3a 100644 --- a/examples/http_client/Makefile +++ b/examples/http_client/Makefile @@ -1,3 +1,3 @@ PROG = http_client -SSL_LIB=open_ssl +SSL_LIB=openssl include ../examples.mk diff --git a/examples/mqtt_broker/Makefile b/examples/mqtt_broker/Makefile index b289e3380..0028d1af4 100644 --- a/examples/mqtt_broker/Makefile +++ b/examples/mqtt_broker/Makefile @@ -1,4 +1,4 @@ PROG = mqtt_broker MODULE_CFLAGS = -DMG_ENABLE_MQTT_BROKER -SSL_LIB=open_ssl +SSL_LIB=openssl include ../examples.mk diff --git a/examples/mqtt_client/Makefile b/examples/mqtt_client/Makefile index d6c4ed939..f63ad2b64 100644 --- a/examples/mqtt_client/Makefile +++ b/examples/mqtt_client/Makefile @@ -1,4 +1,4 @@ PROG = mqtt_client MODULE_CFLAGS = -DMG_ENABLE_MQTT_BROKER -SSL_LIB=open_ssl +SSL_LIB=openssl include ../examples.mk diff --git a/examples/multithreaded_restful_server/Makefile b/examples/multithreaded_restful_server/Makefile index 54fddd794..81e537d63 100644 --- a/examples/multithreaded_restful_server/Makefile +++ b/examples/multithreaded_restful_server/Makefile @@ -1,4 +1,4 @@ PROG = multithreaded_restful_server MODULE_CFLAGS = -DMG_ENABLE_THREADS -SSL_LIB=open_ssl +SSL_LIB=openssl include ../examples.mk diff --git a/examples/netcat/Makefile b/examples/netcat/Makefile index c71d7fe8c..aeffe7f2f 100644 --- a/examples/netcat/Makefile +++ b/examples/netcat/Makefile @@ -1,4 +1,4 @@ PROG = nc MODULE_CFLAGS=-DMG_ENABLE_THREADS -SSL_LIB=open_ssl +SSL_LIB=openssl include ../examples.mk diff --git a/examples/restful_server_s3/Makefile b/examples/restful_server_s3/Makefile index 2e7e35289..649f35f9e 100644 --- a/examples/restful_server_s3/Makefile +++ b/examples/restful_server_s3/Makefile @@ -1,4 +1,4 @@ PROG = restful_server_s3 -SSL_LIB=open_ssl +SSL_LIB=openssl include ../examples.mk -- GitLab