Changeset 8727 for trunk/configure.ac
- Timestamp:
- Jun 21, 2009, 8:57:26 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r8723 r8727 196 196 dnl dht 197 197 198 DHT_CFLAGS="-I\$(top_srcdir)/third-party/dht" 199 DHT_LIBS="\$(top_builddir)/third-party/dht/libdht.a" 198 199 AC_ARG_ENABLE([dht], 200 AS_HELP_STRING([--disable-dht],[omit DHT support]), 201 [enable_dht=${enableval}], 202 [enable_dht=yes]) 203 if test "x$enable_dht" = "xno" ; then 204 AC_DEFINE([WITHOUT_DHT], 1) 205 DHT_CFLAGS="" 206 DHT_LIBS="" 207 else 208 DHT_CFLAGS="-I\$(top_srcdir)/third-party/dht" 209 DHT_LIBS="\$(top_builddir)/third-party/dht/libdht.a" 210 fi 211 AM_CONDITIONAL(DHT, test "x$enable_dht" = "xyes") 200 212 AC_SUBST(DHT_CFLAGS) 201 213 AC_SUBST(DHT_LIBS) … … 398 410 Compiler: ${CXX} 399 411 System or bundled libevent: ${libevent_source} 412 DHT support: ${enable_dht} 400 413 401 414 Build OS X client: ${build_mac}
Note: See TracChangeset
for help on using the changeset viewer.