0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-27 15:41:05 +08:00

Remove unnecessary conditional

This conditional is unnecessary as BUILD_PGM can be negated in the test.

Signed-off-by: Mikko Koppanen <mkoppanen@php.net>
This commit is contained in:
Mikko Koppanen 2010-11-17 15:07:59 +01:00 committed by Martin Sustrik
parent 925595259b
commit b83d0a1bc0
2 changed files with 1 additions and 2 deletions

View File

@ -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)

View File

@ -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