aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2023-03-14 12:38:13 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2023-03-14 13:13:40 +0100
commit5ef158fbbb3d515d55fb5bec9222cb7c24dc3956 (patch)
tree5763fd00f8135bd0583d2fbfd3b3344539c0b531
parent25729cf531fb3f7289f9f29c14c21ffa79e1c12c (diff)
configure.ac: Fix logic enabling osmo_fd fd checks
The logic testing the and setting the define was inverted, which made it enabled by default. Take the chance to rename the enable flag to be "ofd" instead of "bsc-fd" (since anyway the flag was broken). Change-Id: I81112fa1f6ce1a8e5fe85468241ad385ed8805d3
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 108c0a18..478da9b1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -296,13 +296,13 @@ fi
AC_ARG_ENABLE(bsc_fd_check,
[AS_HELP_STRING(
- [--enable-bsc-fd-check],
+ [--enable-ofd-check],
[Instrument osmo_fd_register to check that the fd is registered]
)],
[fd_check=$enableval], [fd_check="no"])
-if test x"$fd_check" = x"no"
+if test x"$fd_check" = x"yes"
then
- AC_DEFINE([OSMO_FD_CHECK],[1],[Instrument the osmo_fd_register])
+ AC_DEFINE([OSMO_FD_CHECK], [1], [Instrument the osmo_fd_register])
fi
AC_ARG_ENABLE([force_io_select],