aboutsummaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authorSaúl Ibarra Corretgé <saghul@gmail.com>2017-07-22 17:50:57 +0200
committerBen Noordhuis <info@bnoordhuis.nl>2018-06-14 18:39:32 +0200
commit99ae3edf28fd5c848e886e41ac3f4bd40538e24d (patch)
treebebcafe31f6739d3fe17a80025e2799bb663e737 /docs/src
parent0cdb4a5b4b706d0e09413d9270da28f9a88dc083 (diff)
downloadlibuv-99ae3edf28fd5c848e886e41ac3f4bd40538e24d.tar.gz
libuv-99ae3edf28fd5c848e886e41ac3f4bd40538e24d.zip
core: move all include files except uv.h to uv/
This is a cherry-pick of commit d010030ad5 from the master branch. Conflicts: Makefile.am include/uv.h include/uv/unix.h libuv.nsi (deleted) src/unix/pthread-barrier.c (deleted) PR-URL: https://github.com/libuv/libuv/pull/1850 Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/conf.py b/docs/src/conf.py
index c9b4ea38..f6f43253 100644
--- a/docs/src/conf.py
+++ b/docs/src/conf.py
@@ -18,7 +18,7 @@ import sys
def get_libuv_version():
- with open('../../include/uv-version.h') as f:
+ with open('../../include/uv/version.h') as f:
data = f.read()
try:
m = re.search(r"""^#define UV_VERSION_MAJOR (\d+)$""", data, re.MULTILINE)