Changeset 8888 for trunk/configure.ac
- Timestamp:
- Aug 10, 2009, 4:09:25 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r8887 r8888 204 204 dnl dht 205 205 206 207 AC_ARG_ENABLE([dht], 208 AS_HELP_STRING([--disable-dht],[omit DHT support]), 209 [enable_dht=${enableval}], 210 [enable_dht=yes]) 211 if test "x$enable_dht" = "xno" ; then 212 AC_DEFINE([WITHOUT_DHT], 1) 213 DHT_CFLAGS="" 214 DHT_LIBS="" 215 else 216 DHT_CFLAGS="-I\$(top_srcdir)/third-party/dht" 217 DHT_LIBS="\$(top_builddir)/third-party/dht/libdht.a" 218 fi 219 AM_CONDITIONAL(DHT, test "x$enable_dht" = "xyes") 206 DHT_CFLAGS="-I\$(top_srcdir)/third-party/dht" 207 DHT_LIBS="\$(top_builddir)/third-party/dht/libdht.a" 220 208 AC_SUBST(DHT_CFLAGS) 221 209 AC_SUBST(DHT_LIBS) … … 428 416 Compiler: ${CXX} 429 417 System or bundled libevent: ${libevent_source} 430 DHT support: ${enable_dht}431 418 432 419 Build Mac client: ${build_mac}
Note: See TracChangeset
for help on using the changeset viewer.