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,
|
AC_ARG_ENABLE(blocking-random,
|
||||||
[AS_HELP_STRING(--enable-blocking-random,Use /dev/random instead of /dev/urandom)],
|
[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,
|
AC_ARG_WITH(safecode,
|
||||||
[AS_HELP_STRING(--with-safecode,For maintainers only - please do not use)],
|
[AS_HELP_STRING(--with-safecode,For maintainers only - please do not use)],
|
||||||
@ -92,6 +96,7 @@ AC_ARG_WITH(safecode,
|
|||||||
AC_ARG_ENABLE(debug,
|
AC_ARG_ENABLE(debug,
|
||||||
[AS_HELP_STRING(--enable-debug,For maintainers only - please do not use)],
|
[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"], [
|
AS_IF([test "x$LX_CFLAGS" = "xNONE"], [
|
||||||
nxflags=""
|
nxflags=""
|
||||||
for flag in `echo $CFLAGS`; do
|
for flag in `echo $CFLAGS`; do
|
||||||
@ -104,6 +109,7 @@ AC_ARG_ENABLE(debug,
|
|||||||
CFLAGS="$nxflags -O0 -g3"
|
CFLAGS="$nxflags -O0 -g3"
|
||||||
])
|
])
|
||||||
CPPFLAGS="$CPPFLAGS -DDEBUG=1"
|
CPPFLAGS="$CPPFLAGS -DDEBUG=1"
|
||||||
|
])
|
||||||
])
|
])
|
||||||
|
|
||||||
AC_SUBST([MAINT])
|
AC_SUBST([MAINT])
|
||||||
|
Loading…
Reference in New Issue
Block a user