Skip to content
Snippets Groups Projects
Commit 27be1a2d authored by Nicolas "Pixel" Noble's avatar Nicolas "Pixel" Noble
Browse files

Removing a few more traces of libevent.

parent 3eb079dc
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,6 @@ ...@@ -53,7 +53,6 @@
#define GPR_ARCH_32 1 #define GPR_ARCH_32 1
#define GPR_CPU_LINUX 1 #define GPR_CPU_LINUX 1
#define GPR_GCC_SYNC 1 #define GPR_GCC_SYNC 1
#define GPR_LIBEVENT 1
#define GPR_POSIX_MULTIPOLL_WITH_POLL 1 #define GPR_POSIX_MULTIPOLL_WITH_POLL 1
#define GPR_POSIX_SOCKET 1 #define GPR_POSIX_SOCKET 1
#define GPR_POSIX_SOCKETADDR 1 #define GPR_POSIX_SOCKETADDR 1
...@@ -64,7 +63,6 @@ ...@@ -64,7 +63,6 @@
#elif defined(__linux__) #elif defined(__linux__)
#define GPR_CPU_LINUX 1 #define GPR_CPU_LINUX 1
#define GPR_GCC_ATOMIC 1 #define GPR_GCC_ATOMIC 1
#define GPR_LIBEVENT 1
#define GPR_LINUX 1 #define GPR_LINUX 1
#define GPR_POSIX_MULTIPOLL_WITH_POLL 1 #define GPR_POSIX_MULTIPOLL_WITH_POLL 1
#define GPR_POSIX_SOCKET 1 #define GPR_POSIX_SOCKET 1
...@@ -80,7 +78,6 @@ ...@@ -80,7 +78,6 @@
#elif defined(__APPLE__) #elif defined(__APPLE__)
#define GPR_CPU_POSIX 1 #define GPR_CPU_POSIX 1
#define GPR_GCC_ATOMIC 1 #define GPR_GCC_ATOMIC 1
#define GPR_LIBEVENT 1
#define GPR_POSIX_LOG 1 #define GPR_POSIX_LOG 1
#define GPR_POSIX_MULTIPOLL_WITH_POLL 1 #define GPR_POSIX_MULTIPOLL_WITH_POLL 1
#define GPR_POSIX_SOCKET 1 #define GPR_POSIX_SOCKET 1
......
/* This is only a compilation test, to see if we have libevent installed. */
#include <event2/event.h>
int main() {
event_base_new();
return 0;
}
...@@ -13,7 +13,6 @@ RUN apt-get update && apt-get install -y \ ...@@ -13,7 +13,6 @@ RUN apt-get update && apt-get install -y \
libc6 \ libc6 \
libc6-dbg \ libc6-dbg \
libc6-dev \ libc6-dev \
libevent-dev \
libtool \ libtool \
make \ make \
strace \ strace \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment