Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
unix: remove libev
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed Nov 16, 2012
1 parent 65bb6f0 commit 665a316
Show file tree
Hide file tree
Showing 46 changed files with 1 addition and 55,883 deletions.
3 changes: 0 additions & 3 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ The externally maintained libraries used by libuv are:

- ngx_queue.h (from Nginx), copyright Igor Sysoev. Two clause BSD license.

- libev, located at ev/ is copyright Marc Alexander Lehmann, and
dual-licensed under the MIT license and GPL2.

- inet_pton and inet_ntop implementations, contained in src/inet.c, are
copyright the Internet Systems Consortium, Inc., and licensed under the ISC
license.
Expand Down
8 changes: 1 addition & 7 deletions config-unix.mk
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
E=
CSTDFLAG=--std=c89 -pedantic -Wall -Wextra -Wno-unused-parameter
CFLAGS += -g
CPPFLAGS += -Isrc -Isrc/unix/ev
CPPFLAGS += -Isrc
LINKFLAGS=-lm

CPPFLAGS += -D_LARGEFILE_SOURCE
Expand Down Expand Up @@ -50,7 +50,6 @@ OBJS += src/unix/threadpool.o
OBJS += src/unix/timer.o
OBJS += src/unix/tty.o
OBJS += src/unix/udp.o
OBJS += src/unix/ev/ev.o
OBJS += src/fs-poll.o
OBJS += src/uv-common.o
OBJS += src/inet.o
Expand Down Expand Up @@ -146,17 +145,12 @@ src/%.o: src/%.c include/uv.h include/uv-private/uv-unix.h
src/unix/%.o: src/unix/%.c include/uv.h include/uv-private/uv-unix.h src/unix/internal.h
$(CC) $(CSTDFLAG) $(CPPFLAGS) $(CFLAGS) -c $< -o $@

src/unix/ev/ev.o: src/unix/ev/ev.c
$(CC) $(CPPFLAGS) $(CFLAGS) -c src/unix/ev/ev.c -o src/unix/ev/ev.o -DEV_CONFIG_H=\"$(EV_CONFIG)\"

clean-platform:
-rm -f src/unix/*.o
-rm -f src/unix/ev/*.o
-rm -f src/unix/linux/*.o
-rm -rf test/run-tests.dSYM run-benchmarks.dSYM

distclean-platform:
-rm -f src/unix/*.o
-rm -f src/unix/ev/*.o
-rm -f src/unix/linux/*.o
-rm -rf test/run-tests.dSYM run-benchmarks.dSYM
283 changes: 0 additions & 283 deletions include/uv-private/ev-proto.h

This file was deleted.

Loading

2 comments on commit 665a316

@shigeki
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bnoordhuis Everything is working fine. Awesome!

@ry
Copy link
Contributor

@ry ry commented on 665a316 Nov 25, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:)

Please sign in to comment.