Commit 5e684172 authored by camachat's avatar camachat Committed by Luca Boccassi

Fix build with NORM enabled on FreeBSD. (#2066)

parent 3814b873
......@@ -501,9 +501,9 @@ if test "x$with_norm_ext" != "xno"; then
if test "x$with_norm_ext" != "xyes"; then
norm_path="${with_norm_ext}"
LIBZMQ_EXTRA_CXXFLAGS="-I${norm_path}/include ${LIBZMQ_EXTRA_CXXFLAGS}"
LIBZMQ_EXTRA_LDFLAGS="-I${norm_path}/include ${LIBZMQ_EXTRA_LDFLAGS}"
LIBZMQ_EXTRA_LDFLAGS="-L${norm_path}/lib ${LIBZMQ_EXTRA_LDFLAGS}"
fi
LIBS="-lnorm $LIBS"
LIBS="-L${norm_path}/lib -lnorm $LIBS"
else
AC_MSG_RESULT([no])
fi
......
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