Skip to content

Commit

Permalink
FIX: Check dependencies in the prefix path before the default path
Browse files Browse the repository at this point in the history
  • Loading branch information
namsic authored and jhpark816 committed Oct 27, 2023
1 parent 4b5e3b8 commit 278d061
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ AC_CACHE_CHECK([for libevent directory], ac_cv_libevent_dir, [
saved_LDFLAGS="$LDFLAGS"
saved_CPPFLAGS="$CPPFLAGS"
le_found=no
for ledir in $trylibeventdir "" $prefix /usr/local ; do
for ledir in $trylibeventdir $prefix "" /usr/local ; do
LDFLAGS="$saved_LDFLAGS"
LIBS="$saved_LIBS -levent"
Expand Down Expand Up @@ -434,7 +434,7 @@ if test "x$enable_zk_integration" = "xyes"; then
saved_LDFLAGS="$LDFLAGS"
saved_CPPFLAGS="$CPPFLAGS"
zk_found=no
for zkdir in $tryzookeeperdir "" $prefix /usr/local ; do
for zkdir in $tryzookeeperdir $prefix "" /usr/local ; do
LDFLAGS="$saved_LDFLAGS"
LIBS="$saved_LIBS -lzookeeper_mt"
Expand Down

0 comments on commit 278d061

Please sign in to comment.