Problem: needlessly complicated conditionals in Makefile.am

Solution: the generic approach taken in 70b48a9 allows us to use the
same LDFLAGS on most platforms.
This commit is contained in:
Jeremie Courreges-Anglas 2018-12-07 20:36:51 +01:00
parent 386fa6e013
commit 941915d142

View File

@ -291,21 +291,9 @@ src_libzmq_la_LDFLAGS = \
-version-info @LTVER@ \
@LIBZMQ_EXTRA_LDFLAGS@
else
if ON_LINUX
src_libzmq_la_LDFLAGS = \
-version-info @LTVER@ \
@LIBZMQ_EXTRA_LDFLAGS@
else
if ON_GNU
src_libzmq_la_LDFLAGS = \
-version-info @LTVER@ \
@LIBZMQ_EXTRA_LDFLAGS@
else
src_libzmq_la_LDFLAGS = \
-version-info @LTVER@ \
@LIBZMQ_EXTRA_LDFLAGS@
endif
endif
endif
endif
endif