2014-03-30 12:09:21 +02:00
|
|
|
# nghttp2 - HTTP/2 C Library
|
2012-09-10 14:39:51 +02:00
|
|
|
|
|
|
|
# Copyright (c) 2012 Tatsuhiro Tsujikawa
|
|
|
|
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
# a copy of this software and associated documentation files (the
|
|
|
|
# "Software"), to deal in the Software without restriction, including
|
|
|
|
# without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
# permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
# the following conditions:
|
|
|
|
|
|
|
|
# The above copyright notice and this permission notice shall be
|
|
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
2013-03-27 17:25:42 +01:00
|
|
|
bin_PROGRAMS =
|
|
|
|
check_PROGRAMS =
|
|
|
|
TESTS =
|
|
|
|
|
2014-01-10 13:53:48 +01:00
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-Wall \
|
|
|
|
-I$(top_srcdir)/lib/includes \
|
|
|
|
-I$(top_builddir)/lib/includes \
|
|
|
|
-I$(top_srcdir)/lib \
|
2014-01-10 16:36:20 +01:00
|
|
|
-I$(top_srcdir)/third-party \
|
2013-08-06 14:24:34 +02:00
|
|
|
@LIBSPDYLAY_CFLAGS@ \
|
|
|
|
@XML_CPPFLAGS@ \
|
|
|
|
@LIBEVENT_OPENSSL_CFLAGS@ \
|
|
|
|
@OPENSSL_CFLAGS@ \
|
2014-01-10 13:53:48 +01:00
|
|
|
@JANSSON_CFLAGS@ \
|
2013-08-06 14:24:34 +02:00
|
|
|
@DEFS@
|
|
|
|
AM_LDFLAGS = \
|
|
|
|
@LIBSPDYLAY_LIBS@ \
|
|
|
|
@XML_LIBS@ \
|
|
|
|
@LIBEVENT_OPENSSL_LIBS@ \
|
|
|
|
@OPENSSL_LIBS@ \
|
2014-01-10 13:53:48 +01:00
|
|
|
@JANSSON_LIBS@ \
|
2014-03-05 13:38:33 +01:00
|
|
|
@JEMALLOC_LIBS@ \
|
2013-08-06 14:24:34 +02:00
|
|
|
@SRC_LIBS@
|
2013-03-07 13:17:55 +01:00
|
|
|
|
2014-01-10 16:36:20 +01:00
|
|
|
LDADD = \
|
|
|
|
$(top_builddir)/lib/libnghttp2.la \
|
|
|
|
$(top_builddir)/third-party/libhttp-parser.la
|
2012-09-10 14:39:51 +02:00
|
|
|
|
2014-01-10 15:19:36 +01:00
|
|
|
if ENABLE_APP
|
|
|
|
|
2014-02-28 01:10:42 +01:00
|
|
|
bin_PROGRAMS += nghttp nghttpd nghttpx h2load
|
2012-09-10 14:39:51 +02:00
|
|
|
|
2013-08-27 20:14:19 +02:00
|
|
|
HELPER_OBJECTS = util.cc http2.cc timegm.c app_helper.cc
|
|
|
|
HELPER_HFILES = util.h http2.h timegm.h app_helper.h nghttp2_config.h
|
2012-09-10 14:39:51 +02:00
|
|
|
|
|
|
|
HTML_PARSER_OBJECTS =
|
|
|
|
HTML_PARSER_HFILES = HtmlParser.h
|
|
|
|
|
|
|
|
if HAVE_LIBXML2
|
|
|
|
HTML_PARSER_OBJECTS += HtmlParser.cc
|
|
|
|
endif # HAVE_LIBXML2
|
|
|
|
|
2013-07-21 16:49:12 +02:00
|
|
|
nghttp_SOURCES = ${HELPER_OBJECTS} ${HELPER_HFILES} nghttp.cc \
|
2014-01-10 16:36:20 +01:00
|
|
|
${HTML_PARSER_OBJECTS} ${HTML_PARSER_HFILES}
|
2013-07-21 16:49:12 +02:00
|
|
|
|
2013-07-22 14:30:40 +02:00
|
|
|
nghttpd_SOURCES = ${HELPER_OBJECTS} ${HELPER_HFILES} nghttpd.cc \
|
2014-03-04 15:14:26 +01:00
|
|
|
ssl.cc ssl.h \
|
2013-07-22 14:30:40 +02:00
|
|
|
HttpServer.cc HttpServer.h
|
|
|
|
|
2014-02-28 01:10:42 +01:00
|
|
|
h2load_SOURCES = util.cc util.h http2.cc http2.h h2load.cc h2load.h \
|
2014-03-04 13:29:42 +01:00
|
|
|
ssl.cc ssl.h \
|
2014-02-28 01:10:42 +01:00
|
|
|
h2load_session.h \
|
|
|
|
h2load_http2_session.cc h2load_http2_session.h
|
|
|
|
|
|
|
|
if HAVE_SPDYLAY
|
|
|
|
h2load_SOURCES += h2load_spdy_session.cc h2load_spdy_session.h
|
|
|
|
endif # HAVE_SPDYLAY
|
|
|
|
|
2013-07-26 14:42:39 +02:00
|
|
|
NGHTTPX_SRCS = \
|
2013-08-27 19:47:22 +02:00
|
|
|
util.cc util.h http2.cc http2.h timegm.c timegm.h base64.h \
|
2014-02-09 10:47:26 +01:00
|
|
|
app_helper.cc app_helper.h \
|
2014-03-04 13:33:43 +01:00
|
|
|
ssl.cc ssl.h \
|
2013-07-26 12:33:25 +02:00
|
|
|
shrpx_config.cc shrpx_config.h \
|
|
|
|
shrpx_error.h \
|
|
|
|
shrpx_listen_handler.cc shrpx_listen_handler.h \
|
|
|
|
shrpx_client_handler.cc shrpx_client_handler.h \
|
|
|
|
shrpx_upstream.h \
|
2013-07-26 12:38:54 +02:00
|
|
|
shrpx_http2_upstream.cc shrpx_http2_upstream.h \
|
2013-07-26 12:33:25 +02:00
|
|
|
shrpx_https_upstream.cc shrpx_https_upstream.h \
|
|
|
|
shrpx_downstream_queue.cc shrpx_downstream_queue.h \
|
|
|
|
shrpx_downstream.cc shrpx_downstream.h \
|
|
|
|
shrpx_downstream_connection.cc shrpx_downstream_connection.h \
|
|
|
|
shrpx_http_downstream_connection.cc shrpx_http_downstream_connection.h \
|
2013-11-04 09:53:57 +01:00
|
|
|
shrpx_http2_downstream_connection.cc shrpx_http2_downstream_connection.h \
|
|
|
|
shrpx_http2_session.cc shrpx_http2_session.h \
|
2013-07-26 12:33:25 +02:00
|
|
|
shrpx_log.cc shrpx_log.h \
|
|
|
|
shrpx_http.cc shrpx_http.h \
|
|
|
|
shrpx_io_control.cc shrpx_io_control.h \
|
|
|
|
shrpx_ssl.cc shrpx_ssl.h \
|
|
|
|
shrpx_thread_event_receiver.cc shrpx_thread_event_receiver.h \
|
|
|
|
shrpx_worker.cc shrpx_worker.h \
|
2014-01-10 16:36:20 +01:00
|
|
|
shrpx_accesslog.cc shrpx_accesslog.h
|
2013-07-26 12:33:25 +02:00
|
|
|
|
2013-07-26 13:12:55 +02:00
|
|
|
if HAVE_SPDYLAY
|
2013-07-26 14:42:39 +02:00
|
|
|
NGHTTPX_SRCS += shrpx_spdy_upstream.cc shrpx_spdy_upstream.h
|
2013-07-26 13:12:55 +02:00
|
|
|
endif # HAVE_SPDYLAY
|
|
|
|
|
2013-09-08 08:52:41 +02:00
|
|
|
noinst_LIBRARIES = libnghttpx.a
|
|
|
|
libnghttpx_a_SOURCES = ${NGHTTPX_SRCS}
|
|
|
|
|
|
|
|
nghttpx_SOURCES = shrpx.cc shrpx.h
|
2013-09-08 09:29:39 +02:00
|
|
|
nghttpx_LDFLAGS =
|
|
|
|
nghttpx_LDADD = libnghttpx.a ${LDADD} ${AM_LDFLAGS}
|
2013-07-12 17:45:42 +02:00
|
|
|
|
2013-08-27 17:09:46 +02:00
|
|
|
if HAVE_CUNIT
|
|
|
|
check_PROGRAMS += nghttpx-unittest
|
|
|
|
nghttpx_unittest_SOURCES = shrpx-unittest.cc \
|
|
|
|
shrpx_ssl_test.cc shrpx_ssl_test.h \
|
|
|
|
shrpx_downstream_test.cc shrpx_downstream_test.h \
|
2014-01-06 08:06:02 +01:00
|
|
|
shrpx_config_test.cc shrpx_config_test.h \
|
2013-08-27 19:47:22 +02:00
|
|
|
http2_test.cc http2_test.h \
|
2013-09-08 08:52:41 +02:00
|
|
|
util_test.cc util_test.h
|
2013-08-27 17:09:46 +02:00
|
|
|
nghttpx_unittest_CPPFLAGS = ${AM_CPPFLAGS}\
|
|
|
|
-DNGHTTP2_TESTS_DIR=\"$(top_srcdir)/tests\"
|
2013-09-08 09:29:39 +02:00
|
|
|
nghttpx_unittest_LDFLAGS = -static
|
|
|
|
nghttpx_unittest_LDADD = libnghttpx.a ${LDADD} ${AM_LDFLAGS} \
|
|
|
|
@CUNIT_LIBS@ @TESTS_LIBS@
|
2013-09-08 08:52:41 +02:00
|
|
|
|
2013-08-27 17:09:46 +02:00
|
|
|
TESTS += nghttpx-unittest
|
|
|
|
endif # HAVE_CUNIT
|
2013-02-06 15:27:05 +01:00
|
|
|
|
2014-01-10 15:19:36 +01:00
|
|
|
endif # ENABLE_APP
|
|
|
|
|
2014-01-10 13:53:48 +01:00
|
|
|
if ENABLE_HPACK_TOOLS
|
|
|
|
|
|
|
|
bin_PROGRAMS += inflatehd deflatehd
|
|
|
|
|
|
|
|
HPACK_TOOLS_COMMON_SRCS = comp_helper.c comp_helper.h
|
|
|
|
|
2014-03-30 15:41:02 +02:00
|
|
|
inflatehd_SOURCES = inflatehd.cc $(HPACK_TOOLS_COMMON_SRCS)
|
2014-01-10 13:53:48 +01:00
|
|
|
|
2014-03-30 15:41:02 +02:00
|
|
|
deflatehd_SOURCES = deflatehd.cc $(HPACK_TOOLS_COMMON_SRCS)
|
2014-01-10 13:53:48 +01:00
|
|
|
|
|
|
|
endif # ENABLE_HPACK_TOOLS
|