Commit 97e532e7 authored by Luca Boccassi's avatar Luca Boccassi

Problem: missing flags break build of test_security_curve

Solution: add all the required compiler flags since the test includes
source code from the library directly
parent e2df328d
......@@ -638,9 +638,13 @@ tests_test_security_curve_SOURCES += \
endif
tests_test_security_curve_LDADD = \
src/libzmq.la
src/libzmq.la $(LIBUNWIND_LIBS)
tests_test_security_curve_CPPFLAGS = \
${LIBUNWIND_CFLAGS}
if USE_LIBSODIUM
tests_test_security_curve_CPPFLAGS += \
${sodium_CFLAGS}
tests_test_security_curve_LDADD += \
${sodium_LIBS}
endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment