Skip to content

Commit

Permalink
Fix build with NORM enabled on FreeBSD.
Browse files Browse the repository at this point in the history
  • Loading branch information
camachat committed Jul 27, 2016
1 parent cefa50d commit 07d00b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 07d00b3

Please sign in to comment.