2019-06-26 09:36:49 +03:00
|
|
|
# include/include.am for libevent
|
2012-02-10 17:29:53 -05:00
|
|
|
# Copyright 2000-2007 Niels Provos
|
|
|
|
# Copyright 2007-2012 Niels Provos and Nick Mathewson
|
|
|
|
#
|
|
|
|
# See LICENSE for copying information.
|
|
|
|
|
2012-08-28 15:58:18 -04:00
|
|
|
include_event2dir = $(includedir)/event2
|
2008-02-28 02:47:43 +00:00
|
|
|
|
2009-07-28 04:03:57 +00:00
|
|
|
EVENT2_EXPORT = \
|
2012-08-28 15:58:18 -04:00
|
|
|
include/event2/buffer.h \
|
|
|
|
include/event2/buffer_compat.h \
|
|
|
|
include/event2/bufferevent.h \
|
|
|
|
include/event2/bufferevent_compat.h \
|
|
|
|
include/event2/bufferevent_struct.h \
|
|
|
|
include/event2/dns.h \
|
|
|
|
include/event2/dns_compat.h \
|
|
|
|
include/event2/dns_struct.h \
|
|
|
|
include/event2/event.h \
|
|
|
|
include/event2/event_compat.h \
|
|
|
|
include/event2/event_struct.h \
|
2019-03-26 13:33:57 -04:00
|
|
|
include/event2/watch.h \
|
2012-08-28 15:58:18 -04:00
|
|
|
include/event2/http.h \
|
|
|
|
include/event2/http_compat.h \
|
|
|
|
include/event2/http_struct.h \
|
|
|
|
include/event2/keyvalq_struct.h \
|
|
|
|
include/event2/listener.h \
|
|
|
|
include/event2/rpc.h \
|
|
|
|
include/event2/rpc_compat.h \
|
|
|
|
include/event2/rpc_struct.h \
|
|
|
|
include/event2/tag.h \
|
|
|
|
include/event2/tag_compat.h \
|
|
|
|
include/event2/thread.h \
|
2014-02-19 06:31:27 +01:00
|
|
|
include/event2/util.h \
|
|
|
|
include/event2/visibility.h
|
2009-02-02 19:22:13 +00:00
|
|
|
|
2019-06-26 09:36:49 +03:00
|
|
|
if OPENSSL
|
|
|
|
EVENT2_EXPORT += include/event2/bufferevent_ssl.h
|
2022-01-15 08:30:26 +03:00
|
|
|
else
|
|
|
|
if MBEDTLS
|
|
|
|
EVENT2_EXPORT += include/event2/bufferevent_ssl.h
|
|
|
|
endif
|
2021-12-15 21:27:21 +03:00
|
|
|
endif
|
2019-06-26 09:36:49 +03:00
|
|
|
|
2012-08-28 15:58:18 -04:00
|
|
|
## Without the nobase_ prefixing, Automake would strip "include/event2/" from
|
2011-02-25 10:35:12 -05:00
|
|
|
## the source header filename to derive the installed header filename.
|
2012-08-28 15:58:18 -04:00
|
|
|
## With nobase_ the installed path is $(includedir)/include/event2/ev*.h.
|
2010-08-13 11:41:37 -04:00
|
|
|
|
2011-02-25 10:35:12 -05:00
|
|
|
if INSTALL_LIBEVENT
|
2012-08-28 15:58:18 -04:00
|
|
|
include_event2_HEADERS = $(EVENT2_EXPORT)
|
|
|
|
nodist_include_event2_HEADERS = include/event2/event-config.h
|
2011-02-25 10:35:12 -05:00
|
|
|
else
|
2012-08-28 15:58:18 -04:00
|
|
|
noinst_HEADERS += $(EVENT2_EXPORT)
|
|
|
|
nodist_noinst_HEADERS = include/event2/event-config.h
|
2011-02-25 10:35:12 -05:00
|
|
|
endif
|