Skip to content

Commit

Permalink
modules/websocket: ensure linkage to libcrypto
Browse files Browse the repository at this point in the history
Fixes linkage for Ubuntu Wily (15.10).
The issue manifests itself as "undefined symbol: SHA1" error at module loading.
  • Loading branch information
andrey-utkin committed Dec 12, 2015
1 parent 01060e9 commit 432c1e3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions modules/websocket/Makefile
Expand Up @@ -13,6 +13,12 @@ SSL_BUILDER=$(shell \
if pkg-config --exists libssl; then \
echo 'pkg-config libssl'; \
fi)
ifneq($(SSL_BUILDER),)
SSL_BUILDER+=$(shell \
if pkg-config --exists libcrypto; then \
echo 'libcrypto'; \
fi)
endif
endif

ifneq ($(SSL_BUILDER),)
Expand Down

0 comments on commit 432c1e3

Please sign in to comment.