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

Comparing libev/import_libevent (file contents):
Revision 1.21 by root, Fri Dec 14 21:07:13 2007 UTC vs.
Revision 1.25 by root, Tue Dec 25 07:05:46 2007 UTC

1#!/bin/sh 1#!/bin/sh
2
3LE=../libevent-1.4.0-beta
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
9 11
10cvs update -AdP libev 12cvs update -AdP libev
11rsync -avP libev/. . --exclude CVS 13rsync -avP libev/. . --exclude CVS
12 14
13rm -f configure.ac 15rm -f configure.ac
14mv LICENSE.libevent LICENSE
15
16LE=../libevent-1.4.0-beta
17 16
18cp $LE/evdns.h . 17cp $LE/evdns.h .
18
19perl -i -pe 's%^/.libevent-include./%#include "event_compat.h"%' event.h
19 20
20perl -ne ' 21perl -ne '
21 s/\s+char buf\[64\];/\tchar buf[96];/; 22 s/\s+char buf\[64\];/\tchar buf[96];/;
22 if (/#include "event.h"/) { 23 if (/#include "event.h"/) {
23 print "#ifndef EV_STANDALONE\n$_#endif\n"; 24 print "#ifndef EV_STANDALONE\n$_#endif\n";
92 s/\bepoll.c\b//g; 93 s/\bepoll.c\b//g;
93 s/\bepoll_sub.c\b//g; 94 s/\bepoll_sub.c\b//g;
94 s/\bevent-internal.h\b//g; 95 s/\bevent-internal.h\b//g;
95 s/\bevsignal.h\b//g; 96 s/\bevsignal.h\b//g;
96 s/^(man_MANS\s*=)/$1 ev.3 /; 97 s/^(man_MANS\s*=)/$1 ev.3 /;
97 s/^(EXTRA_DIST\s*=)/$1 LICENSE 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 /; 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 /;
98 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 /;
99 s/^(CORE_SRC\s*=)/$1 ev.c /; 100 s/^(CORE_SRC\s*=)/$1 ev.c /;
100 s/^(SYS_LIBS\s*=)/$1 -lm /; 101 s/^(SYS_LIBS\s*=)/$1 -lm /;
101 #s/libevent/libev/g; 102 #s/libevent/libev/g;
102 print; 103 print;
105perl -ne ' 106perl -ne '
106 #s/-Wall/-Wall -Wno-comment -Wunused-function -Wno-unused-value/; 107 #s/-Wall/-Wall -Wno-comment -Wunused-function -Wno-unused-value/;
107 s/-Wall//g; 108 s/-Wall//g;
108 #s/libevent/libev/g; 109 #s/libevent/libev/g;
109 #VERSION 110 #VERSION
110 s/AM_INIT_AUTOMAKE\s*\(.*,(.*)\)/AM_INIT_AUTOMAKE(libevent-$1+libev,1.85)/; 111 s/AM_INIT_AUTOMAKE\s*\(.*,(.*)\)/AM_INIT_AUTOMAKE(libevent-$1+libev,2.0)/;
111 s/AC_LIBOBJ\(select\)/: ;/g; 112 s/AC_LIBOBJ\(select\)/: ;/g;
112 s/AC_LIBOBJ\(poll\)/: ;/g; 113 s/AC_LIBOBJ\(poll\)/: ;/g;
113 s/AC_LIBOBJ\(kqueue\)/: ;/g; 114 s/AC_LIBOBJ\(kqueue\)/: ;/g;
114 s/AC_LIBOBJ\(epoll\)/: ;/g; 115 s/AC_LIBOBJ\(epoll\)/: ;/g;
115 s/AC_LIBOBJ\(devpoll\)/: ;/g; 116 s/AC_LIBOBJ\(devpoll\)/: ;/g;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines