diff mbox

[1/1] libwebsockets: add LWS_ prefix to LWS_WITHOUT_TESTAPPS=ON cmake option

Message ID 1430314740-6112-1-git-send-email-baptiste.moraine@kapelse.com
State Accepted
Headers show

Commit Message

Baptiste Moraine April 29, 2015, 1:39 p.m. UTC
Currently, libwebsockets.mk is passing -DWITHOUT_TESTAPPS=ON to disable
the building of libwebsockets test applications, but this is doing nothing
because the option is really named  LWS_WITHOUT_TESTAPPS.
This commit fixes that by using the correct option name.

Signed-off-by: Baptiste Moraine <baptiste.moraine@kapelse.com>
---
 package/libwebsockets/libwebsockets.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Samuel Martin April 29, 2015, 3:36 p.m. UTC | #1
On Wed, Apr 29, 2015 at 3:39 PM, Baptiste Moraine
<baptiste.moraine@kapelse.com> wrote:
> Currently, libwebsockets.mk is passing -DWITHOUT_TESTAPPS=ON to disable
> the building of libwebsockets test applications, but this is doing nothing
> because the option is really named  LWS_WITHOUT_TESTAPPS.
> This commit fixes that by using the correct option name.
>
> Signed-off-by: Baptiste Moraine <baptiste.moraine@kapelse.com>
Reviewed-by: Samuel Martin <s.martin49@gmail.com>

Regards,
Thomas Petazzoni April 29, 2015, 4:58 p.m. UTC | #2
Dear Baptiste Moraine,

On Wed, 29 Apr 2015 15:39:00 +0200, Baptiste Moraine wrote:
> Currently, libwebsockets.mk is passing -DWITHOUT_TESTAPPS=ON to disable
> the building of libwebsockets test applications, but this is doing nothing
> because the option is really named  LWS_WITHOUT_TESTAPPS.
> This commit fixes that by using the correct option name.
> 
> Signed-off-by: Baptiste Moraine <baptiste.moraine@kapelse.com>
> ---
>  package/libwebsockets/libwebsockets.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied, thanks.

Thomas
diff mbox

Patch

diff --git a/package/libwebsockets/libwebsockets.mk b/package/libwebsockets/libwebsockets.mk
index 9e62f1c..2f83748 100644
--- a/package/libwebsockets/libwebsockets.mk
+++ b/package/libwebsockets/libwebsockets.mk
@@ -11,7 +11,7 @@  LIBWEBSOCKETS_LICENSE = LGPLv2.1 with exceptions
 LIBWEBSOCKETS_LICENSE_FILES = LICENSE
 LIBWEBSOCKETS_DEPENDENCIES = zlib
 LIBWEBSOCKETS_INSTALL_STAGING = YES
-LIBWEBSOCKETS_CONF_OPTS = -DWITHOUT_TESTAPPS=ON -DLWS_IPV6=ON
+LIBWEBSOCKETS_CONF_OPTS = -DLWS_WITHOUT_TESTAPPS=ON -DLWS_IPV6=ON
 
 ifeq ($(BR2_PACKAGE_OPENSSL),y)
 LIBWEBSOCKETS_DEPENDENCIES += openssl host-openssl