Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(736)

Side by Side Diff: third_party/libevent/Makefile.am

Issue 412006: posix: upgrade libevent from 1.4.7 to 1.4.13 (Closed)
Patch Set: better readme Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 AUTOMAKE_OPTIONS = foreign no-dependencies 1 AUTOMAKE_OPTIONS = foreign no-dependencies
2 2
3 # This is the point release for libevent. It shouldn't include any 3 # This is the point release for libevent. It shouldn't include any
4 # a/b/c/d/e notations. 4 # a/b/c/d/e notations.
5 RELEASE = 1.4 5 RELEASE = 1.4
6 6
7 # This is the version info for the libevent binary API. It has three 7 # This is the version info for the libevent binary API. It has three
8 # numbers: 8 # numbers:
9 # Current -- the number of the binary API that we're implementing 9 # Current -- the number of the binary API that we're implementing
10 # Revision -- which iteration of the implementation of the binary 10 # Revision -- which iteration of the implementation of the binary
(...skipping 11 matching lines...) Expand all
22 # 22 #
23 # Otherwise, we're changing the binary API and breaking bakward 23 # Otherwise, we're changing the binary API and breaking bakward
24 # compatibility with old binaries. Increment Current. Set Age to 0, 24 # compatibility with old binaries. Increment Current. Set Age to 0,
25 # since we're backward compatible with no previous APIs. Set Revision 25 # since we're backward compatible with no previous APIs. Set Revision
26 # to 0 too. 26 # to 0 too.
27 27
28 # History: 28 # History:
29 # Libevent 1.4.1 was 2:0:0 29 # Libevent 1.4.1 was 2:0:0
30 # Libevent 1.4.2 should be 3:0:0 30 # Libevent 1.4.2 should be 3:0:0
31 # Libevent 1.4.5 is 3:0:1 (we forgot to increment in the past) 31 # Libevent 1.4.5 is 3:0:1 (we forgot to increment in the past)
32 VERSION_INFO = 3:1:1 32 VERSION_INFO = 3:3:1
33 33
34 bin_SCRIPTS = event_rpcgen.py 34 bin_SCRIPTS = event_rpcgen.py
35 35
36 EXTRA_DIST = autogen.sh event.h event-internal.h log.h evsignal.h evdns.3 \ 36 EXTRA_DIST = autogen.sh event.h event-internal.h log.h evsignal.h evdns.3 \
37 evrpc.h evrpc-internal.h min_heap.h \ 37 evrpc.h evrpc-internal.h min_heap.h \
38 event.3 \ 38 event.3 \
39 Doxyfile \
39 kqueue.c epoll_sub.c epoll.c select.c poll.c signal.c \ 40 kqueue.c epoll_sub.c epoll.c select.c poll.c signal.c \
40 evport.c devpoll.c event_rpcgen.py \ 41 evport.c devpoll.c event_rpcgen.py \
41 sample/Makefile.am sample/Makefile.in sample/event-test.c \ 42 sample/Makefile.am sample/Makefile.in sample/event-test.c \
42 sample/signal-test.c sample/time-test.c \ 43 sample/signal-test.c sample/time-test.c \
43 test/Makefile.am test/Makefile.in test/bench.c test/regress.c \ 44 test/Makefile.am test/Makefile.in test/bench.c test/regress.c \
44 test/test-eof.c test/test-weof.c test/test-time.c \ 45 test/test-eof.c test/test-weof.c test/test-time.c \
45 test/test-init.c test/test.sh \ 46 test/test-init.c test/test.sh \
46 » compat/sys/queue.h compat/sys/_time.h \ 47 » compat/sys/queue.h compat/sys/_libevent_time.h \
47 WIN32-Code/config.h \ 48 WIN32-Code/config.h \
49 WIN32-Code/event-config.h \
48 WIN32-Code/win32.c \ 50 WIN32-Code/win32.c \
49 WIN32-Code/tree.h \ 51 WIN32-Code/tree.h \
50 WIN32-Prj/event_test/event_test.dsp \ 52 WIN32-Prj/event_test/event_test.dsp \
51 WIN32-Prj/event_test/test.txt WIN32-Prj/libevent.dsp \ 53 WIN32-Prj/event_test/test.txt WIN32-Prj/libevent.dsp \
52 WIN32-Prj/libevent.dsw WIN32-Prj/signal_test/signal_test.dsp \ 54 WIN32-Prj/libevent.dsw WIN32-Prj/signal_test/signal_test.dsp \
53 WIN32-Prj/time_test/time_test.dsp WIN32-Prj/regress/regress.vcproj \ 55 WIN32-Prj/time_test/time_test.dsp WIN32-Prj/regress/regress.vcproj \
54 WIN32-Prj/libevent.sln WIN32-Prj/libevent.vcproj 56 WIN32-Prj/libevent.sln WIN32-Prj/libevent.vcproj
55 57
56 lib_LTLIBRARIES = libevent.la libevent_core.la libevent_extra.la 58 lib_LTLIBRARIES = libevent.la libevent_core.la libevent_extra.la
57 59
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 libevent_la_LDFLAGS = -release $(RELEASE) -version-info $(VERSION_INFO) 99 libevent_la_LDFLAGS = -release $(RELEASE) -version-info $(VERSION_INFO)
98 100
99 libevent_core_la_SOURCES = $(CORE_SRC) 101 libevent_core_la_SOURCES = $(CORE_SRC)
100 libevent_core_la_LIBADD = @LTLIBOBJS@ $(SYS_LIBS) 102 libevent_core_la_LIBADD = @LTLIBOBJS@ $(SYS_LIBS)
101 libevent_core_la_LDFLAGS = -release $(RELEASE) -version-info $(VERSION_INFO) 103 libevent_core_la_LDFLAGS = -release $(RELEASE) -version-info $(VERSION_INFO)
102 104
103 libevent_extra_la_SOURCES = $(EXTRA_SRC) 105 libevent_extra_la_SOURCES = $(EXTRA_SRC)
104 libevent_extra_la_LIBADD = @LTLIBOBJS@ $(SYS_LIBS) 106 libevent_extra_la_LIBADD = @LTLIBOBJS@ $(SYS_LIBS)
105 libevent_extra_la_LDFLAGS = -release $(RELEASE) -version-info $(VERSION_INFO) 107 libevent_extra_la_LDFLAGS = -release $(RELEASE) -version-info $(VERSION_INFO)
106 108
107 include_HEADERS = event.h evhttp.h evdns.h evrpc.h evutil.h event-config.h 109 include_HEADERS = event.h evhttp.h evdns.h evrpc.h evutil.h
110
111 nodist_include_HEADERS = event-config.h
108 112
109 INCLUDES = -I$(srcdir)/compat $(SYS_INCLUDES) 113 INCLUDES = -I$(srcdir)/compat $(SYS_INCLUDES)
110 114
111 man_MANS = event.3 evdns.3 115 man_MANS = event.3 evdns.3
112 116
113 verify: libevent.la 117 verify: libevent.la
114 cd test && make verify 118 cd test && make verify
115 119
116 doxygen: FORCE 120 doxygen: FORCE
117 doxygen $(srcdir)/Doxyfile 121 doxygen $(srcdir)/Doxyfile
118 FORCE: 122 FORCE:
119 123
120 DISTCLEANFILES = *~ event-config.h 124 DISTCLEANFILES = *~ event-config.h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698