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

Comparing libev/import_libevent (file contents):
Revision 1.19 by root, Wed Dec 12 22:26:37 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
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 libev 12cvs update -AdP libev
11rsync -avP libev/. . --exclude CVS 13rsync -avP libev/. . --exclude CVS
12 14
13LE=../libevent-1.4.0-beta 15rm -f configure.ac
14 16
15cp $LE/evdns.h . 17cp $LE/evdns.h .
18
19perl -i -pe 's%^/.libevent-include./%#include "event_compat.h"%' event.h
16 20
17perl -ne ' 21perl -ne '
18 s/\s+char buf\[64\];/\tchar buf[96];/; 22 s/\s+char buf\[64\];/\tchar buf[96];/;
19 if (/#include "event.h"/) { 23 if (/#include "event.h"/) {
20 print "#ifndef EV_STANDALONE\n$_#endif\n"; 24 print "#ifndef EV_STANDALONE\n$_#endif\n";
101 105
102perl -ne ' 106perl -ne '
103 #s/-Wall/-Wall -Wno-comment -Wunused-function -Wno-unused-value/; 107 #s/-Wall/-Wall -Wno-comment -Wunused-function -Wno-unused-value/;
104 s/-Wall//g; 108 s/-Wall//g;
105 #s/libevent/libev/g; 109 #s/libevent/libev/g;
110 #VERSION
106 s/AM_INIT_AUTOMAKE\s*\(.*,(.*)\)/AM_INIT_AUTOMAKE(libevent-$1+libev,1.81)/; 111 s/AM_INIT_AUTOMAKE\s*\(.*,(.*)\)/AM_INIT_AUTOMAKE(libevent-$1+libev,3.1)/;
107 s/AC_LIBOBJ\(select\)/: ;/g; 112 s/AC_LIBOBJ\(select\)/: ;/g;
108 s/AC_LIBOBJ\(poll\)/: ;/g; 113 s/AC_LIBOBJ\(poll\)/: ;/g;
109 s/AC_LIBOBJ\(kqueue\)/: ;/g; 114 s/AC_LIBOBJ\(kqueue\)/: ;/g;
110 s/AC_LIBOBJ\(epoll\)/: ;/g; 115 s/AC_LIBOBJ\(epoll\)/: ;/g;
111 s/AC_LIBOBJ\(devpoll\)/: ;/g; 116 s/AC_LIBOBJ\(devpoll\)/: ;/g;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines