aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2013-03-07 15:32:56 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2013-03-07 15:32:56 +0000
commit5c6c8ef03e14f2f21f6a6c81c5f22452380d9c6e (patch)
tree2e50f99c54accc58c0442543114c55e0f45392ca
parent159e38f1ed94c6b44ca20bc2a78fd5cad7027fd0 (diff)
downloadgnunet-5c6c8ef03e14f2f21f6a6c81c5f22452380d9c6e.tar.gz
gnunet-5c6c8ef03e14f2f21f6a6c81c5f22452380d9c6e.zip
- fix
-rw-r--r--configure.ac10
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index db0b7fa12..35d831032 100644
--- a/configure.ac
+++ b/configure.ac
@@ -970,15 +970,15 @@ AC_ARG_ENABLE([ll],
970 [AS_HELP_STRING([--enable-ll], 970 [AS_HELP_STRING([--enable-ll],
971 [build GNUnet testbed for use with IBM LoadLeveler for running testbed on 971 [build GNUnet testbed for use with IBM LoadLeveler for running testbed on
972 SuperMUC (default is NO)])], 972 SuperMUC (default is NO)])],
973 [if `test "x$enable_ll" = "xno"` 973 [if test "x$enable_ll" = "xno"
974 then 974 then
975 ll=false 975 ll=0
976 else 976 else
977 ll=true 977 ll=1
978 fi], 978 fi],
979 [ll=false]) 979 [ll=0])
980AC_MSG_RESULT($enable_ll) 980AC_MSG_RESULT($enable_ll)
981AM_CONDITIONAL([ENABLE_LL], [test "x$ll" = "xtrue"]) 981AM_CONDITIONAL([ENABLE_LL], [test "x$ll" = "x1"])
982AC_DEFINE_UNQUOTED([ENABLE_LL], [$ll], [Build with LL support]) 982AC_DEFINE_UNQUOTED([ENABLE_LL], [$ll], [Build with LL support])
983 983
984# should 'make check' run tests? 984# should 'make check' run tests?