Verified Commit 2102b957 authored by Tommaso Tocci's avatar Tommaso Tocci
Browse files

Remove unused libev dependency

parent 778af244
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -28,11 +28,9 @@ RUN yum -y -q update && yum -y -q install \
	# Mercury dependencies
	libtool \
	libtool-ltdl-devel \
	libev-devel \
	boost-devel \
	# RocksDB
	which \
	libev-devel \
	snappy-devel \
	gflags-devel \
	libzstd-devel \
@@ -83,11 +81,9 @@ RUN yum -y -q update && yum -y -q install \
	# Mercury dependencies
	libtool \
	libtool-ltdl-devel \
	libev-devel \
	boost-devel \
	# RocksDB
	which \
	libev-devel \
	snappy-devel \
	gflags-devel \
	libzstd-devel \

ifs/CMake/FindLibev.cmake

deleted100644 → 0
+0 −23
Original line number Diff line number Diff line
# Try to find libev
# Once done, this will define
#
# LIBEV_FOUND        - system has libev
# LIBEV_INCLUDE_DIRS - libev include directories
# LIBEV_LIBRARIES    - libraries needed to use libev

find_path(LIBEV_INCLUDE_DIR
    NAMES ev.h
)

find_library(LIBEV_LIBRARY
    NAME ev
)

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(
    libev DEFAULT_MSG LIBEV_LIBRARY LIBEV_INCLUDE_DIR)

mark_as_advanced(LIBEV_LIBRARY LIBEV_INCLUDE_DIR)

set(LIBEV_INCLUDE_DIRS ${LIBEV_INCLUDE_DIR})
set(LIBEV_LIBRARIES ${LIBEV_LIBRARY})
 No newline at end of file
+0 −1
Original line number Diff line number Diff line
@@ -39,7 +39,6 @@ find_package(ZStd REQUIRED)
find_package(JeMalloc) # required if rocksdb has been build with jemalloc
find_package(RocksDB REQUIRED)
# margo dependencies
find_package(Libev REQUIRED)
find_package(Mercury REQUIRED)
find_package(Abt REQUIRED)
find_package(Margo REQUIRED)
+0 −5
Original line number Diff line number Diff line
@@ -47,11 +47,6 @@ be /usr/local/lib.
   make && sudo make install
```

## Mercury

- Install libev to get libev.h, ev.h etc.
`sudo apt install libev-dev` or `sudo apt install libev`

# Usage

## Clone and compile direct ADA-FS dependencies
+0 −8
Original line number Diff line number Diff line
@@ -155,14 +155,6 @@ if [[ ( "${CLUSTER}" == "mogon1" ) || ( "${CLUSTER}" == "fh2" ) || ( "${CLUSTER}
    ../configure --prefix=${INSTALL}
    make -j${CORES}
    make install
    # compile libev
    echo "############################################################ Installing:  libev"
    CURR=${SOURCE}/libev
    prepare_build_dir ${CURR}
    cd ${CURR}/build
    ../configure --prefix=${INSTALL}
    make -j${CORES}
    make install
    # compile gflags
    echo "############################################################ Installing:  gflags"
    CURR=${SOURCE}/gflags
Loading