1
1

event/libevent2022: cleanup dependencies to the embedded libevent lib

configury force event/libevent2022 to be built as a static module,
so simplify Makefile.am

Signed-off-by: Gilles Gouaillardet <gilles@rist.or.jp>
Этот коммит содержится в:
Gilles Gouaillardet 2016-11-07 14:57:52 +09:00
родитель 023d18abae
Коммит 7a2894f1e0

Просмотреть файл

@ -70,17 +70,11 @@ nobase_opal_HEADERS = $(headers)
nobase_nodist_opal_HEADERS = libevent/include/event2/event-config.h
endif
# Make the output library in this directory, and name it either
# mca_<type>_<name>.la (for DSO builds) or libmca_<type>_<name>.la
# (for static builds).
# Make the output library in this directory, and name it
# libmca_<type>_<name>.la because build is forced to be static-only
if MCA_BUILD_opal_event_libevent2022_DSO
component_noinst =
component_install = mca_event_libevent2022.la
else
component_noinst = libmca_event_libevent2022.la
component_install =
endif
# We only ever build this component statically
@ -90,5 +84,4 @@ libmca_event_libevent2022_la_SOURCES =$(sources)
libmca_event_libevent2022_la_LDFLAGS = -module -avoid-version
libmca_event_libevent2022_la_LIBADD = $(builddir)/libevent/libevent.la
libmca_event_libevent2022_la_DEPENDENCIES = $(builddir)/libevent/libevent.la
mca_event_libevent2022_la_DEPENDENCIES = $(builddir)/libevent/libevent.la