2014-03-30 12:09:21 +02:00
|
|
|
# nghttp2 - HTTP/2 C Library
|
2014-01-10 16:36:20 +01:00
|
|
|
|
|
|
|
# Copyright (c) 2014 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.
|
|
|
|
|
2016-01-22 14:48:45 +01:00
|
|
|
AM_CPPFLAGS = @DEFS@
|
2014-01-10 16:36:20 +01:00
|
|
|
|
2016-03-12 01:22:00 +01:00
|
|
|
EXTRA_DIST = CMakeLists.txt
|
|
|
|
|
2015-05-28 15:55:47 +02:00
|
|
|
if ENABLE_THIRD_PARTY
|
|
|
|
|
2014-01-10 16:36:20 +01:00
|
|
|
noinst_LTLIBRARIES = libhttp-parser.la
|
|
|
|
libhttp_parser_la_SOURCES = \
|
|
|
|
http-parser/http_parser.c \
|
|
|
|
http-parser/http_parser.h
|
2015-03-30 16:20:40 +02:00
|
|
|
|
2015-09-23 12:45:53 +02:00
|
|
|
if HAVE_NEVERBLEED
|
|
|
|
noinst_LTLIBRARIES += libneverbleed.la
|
2015-09-30 18:29:51 +02:00
|
|
|
libneverbleed_la_CPPFLAGS = @OPENSSL_CFLAGS@
|
|
|
|
libneverbleed_la_LIBADD = @OPENSSL_LIBS@
|
2015-09-23 12:45:53 +02:00
|
|
|
libneverbleed_la_SOURCES = neverbleed/neverbleed.c neverbleed/neverbleed.h
|
|
|
|
endif # HAVE_NEVERBLEED
|
|
|
|
|
2015-09-05 10:49:10 +02:00
|
|
|
if HAVE_MRUBY
|
|
|
|
|
2016-03-12 01:22:00 +01:00
|
|
|
EXTRA_DIST += build_config.rb mruby/*
|
2015-09-05 18:23:11 +02:00
|
|
|
|
|
|
|
.PHONY: all-local clean mruby
|
|
|
|
|
2015-09-05 10:49:10 +02:00
|
|
|
mruby:
|
2015-09-05 11:22:46 +02:00
|
|
|
MRUBY_CONFIG="${srcdir}/build_config.rb" \
|
|
|
|
BUILD_DIR="${abs_builddir}/mruby/build" \
|
2015-09-12 10:36:01 +02:00
|
|
|
INSTALL_DIR="${abs_builddir}/mruby/build/install/bin" \
|
2015-09-05 11:22:46 +02:00
|
|
|
CC="${CC}" CXX="${CXX}" LD="${LD}" \
|
2015-09-07 16:19:51 +02:00
|
|
|
CFLAGS="${CPPFLAGS} ${CFLAGS}" CXXFLAGS="${CPPFLAGS} ${CXXFLAGS}" \
|
|
|
|
LDFLAGS="${LDFLAGS}" \
|
2015-09-05 11:22:46 +02:00
|
|
|
"${srcdir}/mruby/minirake" -f "${srcdir}/mruby/Rakefile"
|
2015-09-05 10:49:10 +02:00
|
|
|
|
|
|
|
all-local: mruby
|
|
|
|
|
|
|
|
clean-local:
|
2016-02-22 17:06:23 +01:00
|
|
|
MRUBY_CONFIG="${srcdir}/build_config.rb" \
|
|
|
|
BUILD_DIR="${abs_builddir}/mruby/build" \
|
|
|
|
"${srcdir}/mruby/minirake" -f "${srcdir}/mruby/Rakefile" clean
|
2015-09-05 10:49:10 +02:00
|
|
|
|
|
|
|
endif # HAVE_MRUBY
|
2015-03-30 16:20:40 +02:00
|
|
|
|
2015-05-28 15:55:47 +02:00
|
|
|
endif # ENABLE_THIRD_PARTY
|