Skip to content

Commit ad8d322

Browse files
start impl http3 via quiche
1 parent ca1ad76 commit ad8d322

File tree

92 files changed

+7170
-4677
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+7170
-4677
lines changed

Makefile.in

+46-25
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Makefile.in generated by automake 1.13.4 from Makefile.am.
1+
# Makefile.in generated by automake 1.16.1 from Makefile.am.
22
# @configure_input@
33

4-
# Copyright (C) 1994-2013 Free Software Foundation, Inc.
4+
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
55

66
# This Makefile.in is free software; the Free Software Foundation
77
# gives unlimited permission to copy and/or distribute it,
@@ -15,7 +15,17 @@
1515
@SET_MAKE@
1616

1717
VPATH = @srcdir@
18-
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
18+
am__is_gnu_make = { \
19+
if test -z '$(MAKELEVEL)'; then \
20+
false; \
21+
elif test -n '$(MAKE_HOST)'; then \
22+
true; \
23+
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
24+
true; \
25+
else \
26+
false; \
27+
fi; \
28+
}
1929
am__make_running_with_option = \
2030
case $${target_option-} in \
2131
?) ;; \
@@ -82,13 +92,6 @@ target_triplet = @target@
8292
@ENABLE_SHARED_TRUE@am__append_1 = src/ulib/orm/driver
8393
@ENABLE_EXAMPLES_TRUE@am__append_2 = examples
8494
subdir = .
85-
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
86-
$(top_srcdir)/configure $(am__configure_deps) \
87-
$(top_srcdir)/include/ulib/internal/config.h.in \
88-
$(srcdir)/rpm.sh.in $(srcdir)/ULib.spec.in \
89-
$(srcdir)/userver.service.in AUTHORS ChangeLog INSTALL NEWS \
90-
README THANKS TODO config.guess config.sub install-sh missing \
91-
ylwrap ltmain.sh
9295
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
9396
am__aclocal_m4_deps = $(top_srcdir)/m4/ac_check_package.m4 \
9497
$(top_srcdir)/m4/ac_compilation_environment.m4 \
@@ -110,6 +113,8 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/ac_check_package.m4 \
110113
$(top_srcdir)/configure.ac
111114
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
112115
$(ACLOCAL_M4)
116+
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
117+
$(am__configure_deps) $(am__DIST_COMMON)
113118
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
114119
configure.lineno config.status.lineno
115120
mkinstalldirs = $(install_sh) -d
@@ -129,7 +134,7 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
129134
am__v_at_0 = @
130135
am__v_at_1 =
131136
depcomp =
132-
am__depfiles_maybe =
137+
am__maybe_remake_depfiles =
133138
SOURCES =
134139
DIST_SOURCES =
135140
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
@@ -181,7 +186,7 @@ am__recursive_targets = \
181186
$(RECURSIVE_CLEAN_TARGETS) \
182187
$(am__extra_recursive_targets)
183188
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
184-
cscope distdir dist dist-all distcheck
189+
cscope distdir distdir-am dist dist-all distcheck
185190
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
186191
# Read a list of newline-separated strings from the standard input,
187192
# and print each of them once, without duplicates. Input order is
@@ -202,6 +207,11 @@ am__define_uniq_tagged_files = \
202207
ETAGS = etags
203208
CTAGS = ctags
204209
CSCOPE = cscope
210+
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/ULib.spec.in \
211+
$(srcdir)/rpm.sh.in $(srcdir)/userver.service.in \
212+
$(top_srcdir)/include/ulib/internal/config.h.in AUTHORS \
213+
ChangeLog INSTALL NEWS README THANKS TODO compile config.guess \
214+
config.sub install-sh ltmain.sh missing ylwrap
205215
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
206216
distdir = $(PACKAGE)-$(VERSION)
207217
top_distdir = $(distdir)
@@ -478,15 +488,14 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi
478488
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
479489
$(am__cd) $(top_srcdir) && \
480490
$(AUTOMAKE) --foreign Makefile
481-
.PRECIOUS: Makefile
482491
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
483492
@case '$?' in \
484493
*config.status*) \
485494
echo ' $(SHELL) ./config.status'; \
486495
$(SHELL) ./config.status;; \
487496
*) \
488-
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
489-
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
497+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
498+
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
490499
esac;
491500

492501
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -499,8 +508,8 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
499508
$(am__aclocal_m4_deps):
500509

501510
include/ulib/internal/config.h: include/ulib/internal/stamp-h1
502-
@if test ! -f $@; then rm -f include/ulib/internal/stamp-h1; else :; fi
503-
@if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) include/ulib/internal/stamp-h1; else :; fi
511+
@test -f $@ || rm -f include/ulib/internal/stamp-h1
512+
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) include/ulib/internal/stamp-h1
504513

505514
include/ulib/internal/stamp-h1: $(top_srcdir)/include/ulib/internal/config.h.in $(top_builddir)/config.status
506515
@rm -f include/ulib/internal/stamp-h1
@@ -655,7 +664,10 @@ distclean-tags:
655664
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
656665
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
657666

658-
distdir: $(DISTFILES)
667+
distdir: $(BUILT_SOURCES)
668+
$(MAKE) $(AM_MAKEFLAGS) distdir-am
669+
670+
distdir-am: $(DISTFILES)
659671
$(am__remove_distdir)
660672
test -d "$(distdir)" || mkdir "$(distdir)"
661673
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
@@ -723,7 +735,7 @@ distdir: $(DISTFILES)
723735
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
724736
|| chmod -R a+r "$(distdir)"
725737
dist-gzip: distdir
726-
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
738+
tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
727739
$(am__post_remove_distdir)
728740

729741
dist-bzip2: distdir
@@ -739,11 +751,17 @@ dist-xz: distdir
739751
$(am__post_remove_distdir)
740752

741753
dist-tarZ: distdir
754+
@echo WARNING: "Support for distribution archives compressed with" \
755+
"legacy program 'compress' is deprecated." >&2
756+
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
742757
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
743758
$(am__post_remove_distdir)
744759

745760
dist-shar: distdir
746-
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
761+
@echo WARNING: "Support for shar distribution archives is" \
762+
"deprecated." >&2
763+
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
764+
shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
747765
$(am__post_remove_distdir)
748766

749767
dist-zip: distdir
@@ -761,7 +779,7 @@ dist dist-all:
761779
distcheck: dist
762780
case '$(DIST_ARCHIVES)' in \
763781
*.tar.gz*) \
764-
GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
782+
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
765783
*.tar.bz2*) \
766784
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
767785
*.tar.lz*) \
@@ -771,22 +789,23 @@ distcheck: dist
771789
*.tar.Z*) \
772790
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
773791
*.shar.gz*) \
774-
GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
792+
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
775793
*.zip*) \
776794
unzip $(distdir).zip ;;\
777795
esac
778796
chmod -R a-w $(distdir)
779797
chmod u+w $(distdir)
780-
mkdir $(distdir)/_build $(distdir)/_inst
798+
mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
781799
chmod a-w $(distdir)
782800
test -d $(distdir)/_build || exit 0; \
783801
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
784802
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
785803
&& am__cwd=`pwd` \
786-
&& $(am__cd) $(distdir)/_build \
787-
&& ../configure --srcdir=.. --prefix="$$dc_install_base" \
804+
&& $(am__cd) $(distdir)/_build/sub \
805+
&& ../../configure \
788806
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
789807
$(DISTCHECK_CONFIGURE_FLAGS) \
808+
--srcdir=../.. --prefix="$$dc_install_base" \
790809
&& $(MAKE) $(AM_MAKEFLAGS) \
791810
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
792811
&& $(MAKE) $(AM_MAKEFLAGS) check \
@@ -968,6 +987,8 @@ uninstall-am: uninstall-aclocalDATA
968987
mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
969988
uninstall-aclocalDATA uninstall-am
970989

990+
.PRECIOUS: Makefile
991+
971992

972993
.phony: doxy todo
973994

0 commit comments

Comments
 (0)