Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
opendht
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
opendht
Commits
c81da2dd
Commit
c81da2dd
authored
7 years ago
by
Adrien Béraud
Browse files
Options
Downloads
Patches
Plain Diff
indexation: enable by default
parent
b02f8e98
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
configure.ac
+4
-4
4 additions, 4 deletions
configure.ac
with
5 additions
and
5 deletions
CMakeLists.txt
+
1
−
1
View file @
c81da2dd
...
...
@@ -20,7 +20,7 @@ option (OPENDHT_PROXY_SERVER "Enable DHT proxy server, use Restbed and jsoncpp"
option
(
OPENDHT_PUSH_NOTIFICATIONS
"Enable push notifications support"
OFF
)
option
(
OPENDHT_PROXY_SERVER_IDENTITY
"Allow clients to use the node identity"
OFF
)
option
(
OPENDHT_PROXY_CLIENT
"Enable DHT proxy client, use Restbed and jsoncpp"
OFF
)
option
(
OPENDHT_INDEX
"Build DHT indexation feature"
O
FF
)
option
(
OPENDHT_INDEX
"Build DHT indexation feature"
O
N
)
find_package
(
Doxygen
)
option
(
OPENDHT_DOCUMENTATION
"Create and install the HTML based API documentation (requires Doxygen)"
${
DOXYGEN_FOUND
}
)
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
4
−
4
View file @
c81da2dd
...
...
@@ -25,7 +25,7 @@ AC_PROG_CXX
AM_PROG_AR
dnl Check for logs
AC_ARG_ENABLE([logs], [AS_HELP_STRING([--disable-logs], [Disble DHT logs])])
AC_ARG_ENABLE([logs], [AS_HELP_STRING([--disable-logs], [Dis
a
ble DHT logs])])
AS_IF([test "x$enable_logs" != "xno"], [
AC_DEFINE([OPENDHT_LOG], [true], [Define if DHT logs are enabled])
], [
...
...
@@ -33,9 +33,9 @@ AS_IF([test "x$enable_logs" != "xno"], [
])
dnl Check for indexation
AC_ARG_ENABLE([indexation], [AS_HELP_STRING([--
en
able-indexation], [
En
able DHT indexation])])
AM_CONDITIONAL(ENABLE_INDEXATION, test x$enable_indexation
=
=
xyes
)
AS_IF([test "x$enable_indexation" = "x
yes
"], [
AC_ARG_ENABLE([indexation], [AS_HELP_STRING([--
dis
able-indexation], [
Dis
able DHT indexation])])
AM_CONDITIONAL(ENABLE_INDEXATION, test x$enable_indexation
!
=
"xno"
)
AS_IF([test "x$enable_indexation"
!
= "x
no
"], [
AC_DEFINE([OPENDHT_INDEXATION], [1], [Define if DHT indexation is enabled])
])
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment