Commit b83d0a1b authored by Mikko Koppanen's avatar Mikko Koppanen Committed by Martin Sustrik

Remove unnecessary conditional

This conditional is unnecessary as BUILD_PGM can be negated in the test.
Signed-off-by: 's avatarMikko Koppanen <mkoppanen@php.net>
parent 92559525
......@@ -359,7 +359,6 @@ if test "x$gnu_compilers" = "xyes" -a "x$pgm_ext" = "xno"; then
fi
AM_CONDITIONAL(BUILD_PGM, test "x$pgm_ext" = "xyes")
AM_CONDITIONAL(BUILD_NO_PGM, test "x$pgm_ext" = "xno")
AM_CONDITIONAL(ON_MINGW, test "x$on_mingw32" = "xyes")
AC_SUBST(stdint)
......
......@@ -243,7 +243,7 @@ libzmq_la_CXXFLAGS = -I$(top_srcdir)/foreign/openpgm/@pgm_basename@/openpgm/pgm/
@LIBZMQ_EXTRA_CXXFLAGS@
endif
if BUILD_NO_PGM
if !BUILD_PGM
libzmq_la_CXXFLAGS = @LIBZMQ_EXTRA_CXXFLAGS@
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