From 6bce9c7d544e967e73128e06f3ee2fc9ebc10e69 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sat, 24 Jun 2023 18:56:00 +0200 Subject: [PATCH] build: Simplify condition for building para_server. We fail the configure script earlier if flex or bison are not installed, so we don't need to repeat this check here. --- configure.ac | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index a3030864..efcd2288 100644 --- a/configure.ac +++ b/configure.ac @@ -376,8 +376,7 @@ AC_ARG_ENABLE([ubsan], [AS_HELP_STRING(--enable-ubsan, [ENABLE_UBSAN=yes], [ENABLE_UBSAN=no]) AC_SUBST(ENABLE_UBSAN) ######################################################################### server -if test -n "$CRYPTOLIB" && test $HAVE_OSL = yes && test -n "$BISON" && \ - test -n "$FLEX"; then +if test -n "$CRYPTOLIB" && test $HAVE_OSL = yes; then build_server="yes" executables="$executables server upgrade_db" server_objs=" -- 2.39.5