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
Need to look into why configure does not detect -liconv, but linking fails without it (unless using the workaround).
Turns out that autoconf’s AC_SEARCH_LIBS does not put an #include directive into its conftest.c file, so it gets the builtin iconv instead of the one requiring libiconv.
Fixing this in i3’s configure.ac in i3/i3#3942, but of course other upstream software might still use AC_SEARCH_LIBS for detecting iconv.
Currently using the following workaround to build i3 from git:
CPATH=/ro/glibc-amd64-2.27-3/out/include:$CPATH make -j8
Need to look into why configure does not detect
-liconv
, but linking fails without it (unless using the workaround).The text was updated successfully, but these errors were encountered: