You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like we're not looking for the "w" version of libncurses. Does adding it to the list of libraries to check work? In particular:
--- a/M2/configure.ac+++ b/M2/configure.ac@@ -1212,7 +1212,7 @@ fi
# the order of these segments also reflects dependencies
AC_LANG(C)
-AC_SEARCH_LIBS(tgoto,curses tinfo ncurses,,AC_MSG_ERROR([[not found: library containing symbol tgoto; tried libcurses, libncurses, and libtinfo)]]))+AC_SEARCH_LIBS(tgoto,curses tinfo ncurses ncursesw,,AC_MSG_ERROR([[not found: library containing symbol tgoto; tried libcurses, libncurses, and libtinfo)]]))
if test $BUILD_readline = no
then AC_CHECK_HEADER(readline/readline.h,,BUILD_readline=yes)
fi
Tried, does not work. I found that the configure is done with no error if I run it manually with same args as in PKGBUILD, but fails if running by makepkg. So maybe it is an issue with the arch build system?
Maybe? I'm not familiar with makepkg. Is there a way to set the build flags? Perhaps adding -L/foo/bar to LDFLAGS, where `/foo/bar/ is the directory containing libncurses, would help?
mahrud
added
the
build issue
platform specific issues involving compiling M2, generating examples, or running tests
label
Apr 21, 2025
I use the aur package, and get the following error during configure:
I have ncurses version 6.5-3 installed, and I can find that symbol in
libncursesw.so
.The text was updated successfully, but these errors were encountered: