ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/import_libevent
(Generate patch)

Comparing libev/import_libevent (file contents):
Revision 1.13 by root, Fri Dec 7 19:23:48 2007 UTC vs.
Revision 1.29 by root, Tue Apr 15 04:34:07 2008 UTC

1#!/bin/sh 1#!/bin/sh
2
3LE=../libevent-1.4.3-stable
2 4
3if ! [ -e evbuffer.c ]; then 5if ! [ -e evbuffer.c ]; then
4 echo do not run this programm unless you know what you are doing 6 echo do not run this programm unless you know what you are doing
5 exit 1 7 exit 1
6fi 8fi
7 9
8# this program combines libev and libevent into a single package 10# this program combines libev and libevent into a single package
9 11
10cvs update -AdP 12cvs update -AdP libev
13rsync -avP libev/. . --exclude CVS
11 14
12LE=../libevent-1.4.0-beta 15rm -f configure.ac
13 16
14cp $LE/evdns.h . 17cp $LE/evdns.h .
18
19perl -i -pe 's%^/.libevent-include./%#include "event_compat.h"%' event.h
15 20
16perl -ne ' 21perl -ne '
17 s/\s+char buf\[64\];/\tchar buf[96];/; 22 s/\s+char buf\[64\];/\tchar buf[96];/;
18 if (/#include "event.h"/) { 23 if (/#include "event.h"/) {
19 print "#ifndef EV_STANDALONE\n$_#endif\n"; 24 print "#ifndef EV_STANDALONE\n$_#endif\n";
88 s/\bepoll.c\b//g; 93 s/\bepoll.c\b//g;
89 s/\bepoll_sub.c\b//g; 94 s/\bepoll_sub.c\b//g;
90 s/\bevent-internal.h\b//g; 95 s/\bevent-internal.h\b//g;
91 s/\bevsignal.h\b//g; 96 s/\bevsignal.h\b//g;
92 s/^(man_MANS\s*=)/$1 ev.3 /; 97 s/^(man_MANS\s*=)/$1 ev.3 /;
93 s/^(EXTRA_DIST\s*=)/$1 libev.m4 ev.h ev_vars.h ev_wrap.h event_compat.h ev++.h ev_epoll.c ev_select.c ev_poll.c ev_kqueue.c ev_port.c ev_win32.c ev.3 ev.pod ev.html /; 98 s/^(EXTRA_DIST\s*=)/$1 libev.m4 ev.h ev_vars.h ev_wrap.h event_compat.h ev++.h ev_epoll.c ev_select.c ev_poll.c ev_kqueue.c ev_port.c ev_win32.c ev.3 ev.pod /;
94 s/^(include_HEADERS\s*=)/$1 ev.h event_compat.h ev++.h /; 99 s/^(include_HEADERS\s*=)/$1 ev.h event_compat.h ev++.h /;
95 s/^(CORE_SRC\s*=)/$1 ev.c /; 100 s/^(CORE_SRC\s*=)/$1 ev.c /;
96 s/^(SYS_LIBS\s*=)/$1 -lm /; 101 s/^(SYS_LIBS\s*=)/$1 -lm /;
97 #s/libevent/libev/g; 102 #s/libevent/libev/g;
98 print; 103 print;
100 105
101perl -ne ' 106perl -ne '
102 #s/-Wall/-Wall -Wno-comment -Wunused-function -Wno-unused-value/; 107 #s/-Wall/-Wall -Wno-comment -Wunused-function -Wno-unused-value/;
103 s/-Wall//g; 108 s/-Wall//g;
104 #s/libevent/libev/g; 109 #s/libevent/libev/g;
110 #VERSION
105 s/AM_INIT_AUTOMAKE\s*\(.*,(.*)\)/AM_INIT_AUTOMAKE(libevent-$1+libev,1.7)/; 111 s/AM_INIT_AUTOMAKE\s*\(.*,(.*)\)/AM_INIT_AUTOMAKE(libevent-$1+libev,3.1)/;
106 s/AC_LIBOBJ\(select\)/: ;/g; 112 s/AC_LIBOBJ\(select\)/: ;/g;
107 s/AC_LIBOBJ\(poll\)/: ;/g; 113 s/AC_LIBOBJ\(poll\)/: ;/g;
108 s/AC_LIBOBJ\(kqueue\)/: ;/g; 114 s/AC_LIBOBJ\(kqueue\)/: ;/g;
109 s/AC_LIBOBJ\(epoll\)/: ;/g; 115 s/AC_LIBOBJ\(epoll\)/: ;/g;
110 s/AC_LIBOBJ\(devpoll\)/: ;/g; 116 s/AC_LIBOBJ\(devpoll\)/: ;/g;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines