Skip to content

Commit 90bb279

Browse files
committed
Add autotools files
0 parents  commit 90bb279

File tree

16 files changed

+1624
-0
lines changed

16 files changed

+1624
-0
lines changed

.gitignore

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# emacs backup file
2+
*~
3+
4+
# autotools
5+
*.la
6+
*.lo
7+
*.m4
8+
*.o
9+
*.pyc
10+
.deps/
11+
.libs/
12+
INSTALL
13+
Makefile
14+
Makefile.in
15+
autom4te.cache/
16+
compile
17+
config.guess
18+
config.h
19+
config.h.in
20+
config.log
21+
config.status
22+
config.sub
23+
configure
24+
depcomp
25+
install-sh
26+
libtool
27+
ltmain.sh
28+
missing
29+
stamp-h1
30+
test-driver
31+
32+
# test logs generated by `make check`
33+
*.log
34+
*.trs
35+
36+
# autotools derivatives
37+
/lib/includes/nghttp3/version.h
38+
/lib/libnghttp3.pc

AUTHORS

Whitespace-only changes.

COPYING

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
The MIT License
2+
3+
Copyright (c) 2019 nghttp3 contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining
6+
a copy of this software and associated documentation files (the
7+
"Software"), to deal in the Software without restriction, including
8+
without limitation the rights to use, copy, modify, merge, publish,
9+
distribute, sublicense, and/or sell copies of the Software, and to
10+
permit persons to whom the Software is furnished to do so, subject to
11+
the following conditions:
12+
13+
The above copyright notice and this permission notice shall be
14+
included in all copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

ChangeLog

Whitespace-only changes.

Makefile.am

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# nghttp3
2+
#
3+
# Copyright (c) 2019 nghttp3 contributors
4+
# Copyright (c) 2016 ngtcp2 contributors
5+
#
6+
# Permission is hereby granted, free of charge, to any person obtaining
7+
# a copy of this software and associated documentation files (the
8+
# "Software"), to deal in the Software without restriction, including
9+
# without limitation the rights to use, copy, modify, merge, publish,
10+
# distribute, sublicense, and/or sell copies of the Software, and to
11+
# permit persons to whom the Software is furnished to do so, subject to
12+
# the following conditions:
13+
#
14+
# The above copyright notice and this permission notice shall be
15+
# included in all copies or substantial portions of the Software.
16+
#
17+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24+
SUBDIRS = lib tests
25+
26+
ACLOCAL_AMFLAGS = -I m4
27+
28+
# Format source files using clang-format. Don't format source files
29+
# under third-party directory since we are not responsible for thier
30+
# coding style.
31+
clang-format:
32+
CLANGFORMAT=`git config --get clangformat.binary`; \
33+
test -z $${CLANGFORMAT} && CLANGFORMAT="clang-format"; \
34+
$${CLANGFORMAT} -i lib/*.{c,h} lib/includes/nghttp3/*.h \
35+
examples/*.{cc,h}

NEWS

Whitespace-only changes.

README

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
See README.rst

README.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
nghttp3
2+
=======
3+
4+
nghttp3 is an HTTP/3 library written in C.
5+
6+
License
7+
-------
8+
9+
The MIT License
10+
11+
Copyright (c) 2019 nghttp3 contributors

0 commit comments

Comments
 (0)