diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /ipc/chromium/src/third_party/libevent/include/Makefile.am | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'ipc/chromium/src/third_party/libevent/include/Makefile.am')
-rw-r--r-- | ipc/chromium/src/third_party/libevent/include/Makefile.am | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/ipc/chromium/src/third_party/libevent/include/Makefile.am b/ipc/chromium/src/third_party/libevent/include/Makefile.am new file mode 100644 index 000000000..5153db27c --- /dev/null +++ b/ipc/chromium/src/third_party/libevent/include/Makefile.am @@ -0,0 +1,47 @@ +# include/Makefile.am for libevent +# Copyright 2000-2007 Niels Provos +# Copyright 2007-2012 Niels Provos and Nick Mathewson +# +# See LICENSE for copying information. + +AUTOMAKE_OPTIONS = foreign + +EVENT2_EXPORT = \ + event2/buffer.h \ + event2/buffer_compat.h \ + event2/bufferevent.h \ + event2/bufferevent_compat.h \ + event2/bufferevent_ssl.h \ + event2/bufferevent_struct.h \ + event2/dns.h \ + event2/dns_compat.h \ + event2/dns_struct.h \ + event2/event.h \ + event2/event_compat.h \ + event2/event_struct.h \ + event2/http.h \ + event2/http_compat.h \ + event2/http_struct.h \ + event2/keyvalq_struct.h \ + event2/listener.h \ + event2/rpc.h \ + event2/rpc_compat.h \ + event2/rpc_struct.h \ + event2/tag.h \ + event2/tag_compat.h \ + event2/thread.h \ + event2/util.h + +EXTRA_SRC = $(EVENT2_EXPORT) + +## Without the nobase_ prefixing, Automake would strip "event2/" from +## the source header filename to derive the installed header filename. +## With nobase_ the installed path is $(includedir)/event2/ev*.h. + +if INSTALL_LIBEVENT +nobase_include_HEADERS = $(EVENT2_EXPORT) +nobase_nodist_include_HEADERS = ./event2/event-config.h +else +noinst_HEADERS = $(EVENT2_EXPORT) +nodist_noinst_HEADERS = ./event2/event-config.h +endif |