Make --disable-blocking-random and --disable-debug no-ops
This commit is contained in:
parent
9c1596194e
commit
74031ee550
@ -76,7 +76,11 @@ AC_ARG_ENABLE(pie,
|
||||
|
||||
AC_ARG_ENABLE(blocking-random,
|
||||
[AS_HELP_STRING(--enable-blocking-random,Use /dev/random instead of /dev/urandom)],
|
||||
[AC_DEFINE([USE_BLOCKING_RANDOM], [1], [Use blocking random])])
|
||||
[
|
||||
AS_IF([test "x$enableval" = "xyes"], [
|
||||
AC_DEFINE([USE_BLOCKING_RANDOM], [1], [Use blocking random])
|
||||
])
|
||||
])
|
||||
|
||||
AC_ARG_WITH(safecode,
|
||||
[AS_HELP_STRING(--with-safecode,For maintainers only - please do not use)],
|
||||
@ -92,6 +96,7 @@ AC_ARG_WITH(safecode,
|
||||
AC_ARG_ENABLE(debug,
|
||||
[AS_HELP_STRING(--enable-debug,For maintainers only - please do not use)],
|
||||
[
|
||||
AS_IF([test "x$enableval" = "xyes"], [
|
||||
AS_IF([test "x$LX_CFLAGS" = "xNONE"], [
|
||||
nxflags=""
|
||||
for flag in `echo $CFLAGS`; do
|
||||
@ -105,6 +110,7 @@ AC_ARG_ENABLE(debug,
|
||||
])
|
||||
CPPFLAGS="$CPPFLAGS -DDEBUG=1"
|
||||
])
|
||||
])
|
||||
|
||||
AC_SUBST([MAINT])
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user