Skip to content
Snippets Groups Projects
Commit 82970608 authored by Adrien Béraud's avatar Adrien Béraud
Browse files

autotools: add missing files

parent c215bf1d
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ AC_ARG_ENABLE([python], [AS_HELP_STRING([--disable-python], [Disble python bindi
AS_IF([test "x$enable_python" != "xno"], [
AM_PATH_PYTHON([3.3],, [:])
AS_IF([test -n "$PYTHON"],[
AC_CHECK_PROGS([CYTHON], [cython])
AC_CHECK_PROGS([CYTHON], [cython3])
AS_IF([test -z "$CYTHON"],[AC_MSG_WARN([Cython not found - continuing without python support])])
AC_CHECK_PROGS([PIP], [pip3])
AS_IF([test -z "$PIP"],[AC_MSG_WARN([pip not found - continuing without python uninstall support])])
......
......@@ -9,10 +9,11 @@ libopendht_la_LIBADD = ./argon2/libargon2.la
libopendht_la_SOURCES = \
dht.cpp \
network_engine.cpp \
routing_table.cpp \
network_engine.cpp \
utils.cpp \
infohash.cpp \
node.cpp \
node.cpp \
value.cpp \
crypto.cpp \
securedht.cpp \
......@@ -26,11 +27,12 @@ endif
nobase_include_HEADERS = \
../include/opendht.h \
../include/opendht/dht.h \
../include/opendht/routing_table.h \
../include/opendht/network_engine.h \
../include/opendht/scheduler.h \
../include/opendht/scheduler.h \
../include/opendht/utils.h \
../include/opendht/infohash.h \
../include/opendht/node.h \
../include/opendht/node.h \
../include/opendht/value.h \
../include/opendht/crypto.h \
../include/opendht/securedht.h \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment