From 82970608d4ec2f69124da3bc537412cc1b96209a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20B=C3=A9raud?= <adrien.beraud@savoirfairelinux.com> Date: Tue, 3 May 2016 14:46:04 -0400 Subject: [PATCH] autotools: add missing files --- configure.ac | 2 +- src/Makefile.am | 10 ++++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 1f167462..1620c7ff 100644 --- a/configure.ac +++ b/configure.ac @@ -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])]) diff --git a/src/Makefile.am b/src/Makefile.am index 44a655a5..806c0cb0 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -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 \ -- GitLab