mbbsd/menu.c unconditionally references verifydb_admin_search_display, but the declaration of the function is disabled when USE_VERIFYDB is not defined.
This causes the compilation fails with the aforementioned error.
This fixes the problem by surrounding the referencing code with an appropriate preprocessor condition.
mbbsd/menu.c
unconditionally referencesverifydb_admin_search_display
, but the declaration of the function is disabled whenUSE_VERIFYDB
is not defined. This causes the compilation fails with the aforementioned error.This fixes the problem by surrounding the referencing code with an appropriate preprocessor condition.