Skip to content

Commit

Permalink
build: require libuv
Browse files Browse the repository at this point in the history
Problem: flux-core now requires external libuv instead of internal
libev.

Require it at configure time.
Add it to prereq scripts.
  • Loading branch information
garlick committed Dec 16, 2024
1 parent 4be4d46 commit 6fd1627
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,7 @@ if test "$have_libsystemd" = yes -a "$have_sd_bus_h" = yes; then
AC_DEFINE([HAVE_SD_BUS_MESSAGE_DUMP], [1],
[Define if you have sd_bus_message_dump]))
fi
PKG_CHECK_MODULES([LIBUV], [libuv], [], [])
PKG_CHECK_MODULES([HWLOC], [hwloc >= 1.11.1], [], [])
PKG_CHECK_MODULES([LZ4], [liblz4], [], [])
PKG_CHECK_MODULES([SQLITE], [sqlite3], [], [])
Expand Down
1 change: 1 addition & 0 deletions scripts/install-deps-deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ apt install \
pkg-config \
libc6-dev \
libzmq3-dev \
libuv1-dev \
uuid-dev \
libjansson-dev \
liblz4-dev \
Expand Down

0 comments on commit 6fd1627

Please sign in to comment.