Skip to content

Commit

Permalink
configure find output
Browse files Browse the repository at this point in the history
  • Loading branch information
Explorer09 committed Aug 19, 2024
1 parent 7946058 commit a61c93d
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -555,10 +555,19 @@ none-*|nonwide-yes)
;;
esac

echo ........test output......
find "/usr/lib/pkgconfig" -name '*curses*.pc'
find "/usr/libdata/pkgconfig" -name '*curses*.pc'
find "/usr/lib/x86_64-linux-gnu/pkgconfig" -name '*curses*.pc'
echo ........test output......
if test "$cross_compiling" != yes &&
find "/usr/lib/pkgconfig" -name '*curses*.pc' >/dev/null 2>&1; then
AC_MSG_WARN([your system supports pkg-config; installing pkg-config is recommended before configuring htop])
find "/usr/lib/pkgconfig" -name '*curses*.pc'
fi
if test "$cross_compiling" != yes &&
find "/usr/libdata/pkgconfig" -name '*curses*.pc' >/dev/null 2>&1; then
AC_MSG_WARN([your system supports pkg-config; installing pkg-config is recommended before configuring htop])
find "/usr/libdata/pkgconfig" -name '*curses*.pc'
fi
if test "x$host_alias" != x &&
find "/usr/lib/${host_alias}/pkgconfig" -name '*curses*.pc' >/dev/null 2>&1; then
Expand Down

0 comments on commit a61c93d

Please sign in to comment.