3 if ! [ -e evbuffer.c ]; then
4 echo do not run this programm unless you know what you are doing
8 # this program combines libev and libevent into a single package
11 rsync -avP libev/. . --exclude CVS
15 LE=../libevent-1.4.0-beta
20 s/\s+char buf\[64\];/\tchar buf[96];/;
21 if (/#include "event.h"/) {
22 print "#ifndef EV_STANDALONE\n$_#endif\n";
25 if (/#include "misc.h"/) {
26 print "#ifndef EV_STANDALONE\n$_#endif\n";
29 if (/#include "(unistd.h|sys\/time.h)"/) {
30 print "#ifndef WIN32\n$_#endif\n";
33 next if /#include "log.h"/;
36 ' <$LE/evdns.c >evdns.c
45 cp $LE/event-config.h .
46 cp $LE/event-internal.h .
49 cp $LE/evrpc-internal.h .
51 cp $LE/event_tagging.c .
52 cp $LE/http-internal.h .
53 cp $LE/strlcpy-internal.h .
57 rsync -a $LE/WIN32* $LE/sample $LE/test $LE/compat . --del
58 #rename 's/libevent/libev/' WIN32-Prj/lib*
62 cp $LE/event_rpcgen.py .
65 #perl -i -pe 's/libevent/libev/g' sample/Makefile.am
66 #perl -i -pe 's/libevent/libev/g' test/Makefile.am
68 perl -i -pe 's/#include <event.h>$/#include "event.h"/' test/*.c
71 next if /"event-internal.h"/;
72 s/base\d?->sig.ev_signal_added/0/;
73 s/base\d?->sig.ev_signal_pair\[0\]/-1/;
74 s/base->sig.evsignal_caught/0/;
75 next if /^\ttest_signal_(dealloc|pipeloss|switchbase|assert|restore)\(\)/;
76 next if /^\ttest_simplesignal\(\)/; # non-default-loop
77 next if /^\ttest_immediatesignal\(\)/; # non-default-loop
78 next if /test_priorities\(\d\)/;
93 s/\bevent-internal.h\b//g;
95 s/^(man_MANS\s*=)/$1 ev.3 /;
96 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 /;
97 s/^(include_HEADERS\s*=)/$1 ev.h event_compat.h ev++.h /;
98 s/^(CORE_SRC\s*=)/$1 ev.c /;
99 s/^(SYS_LIBS\s*=)/$1 -lm /;
102 ' <$LE/Makefile.am >Makefile.am
105 #s/-Wall/-Wall -Wno-comment -Wunused-function -Wno-unused-value/;
109 s/AM_INIT_AUTOMAKE\s*\(.*,(.*)\)/AM_INIT_AUTOMAKE(libevent-$1+libev,2.0)/;
110 s/AC_LIBOBJ\(select\)/: ;/g;
111 s/AC_LIBOBJ\(poll\)/: ;/g;
112 s/AC_LIBOBJ\(kqueue\)/: ;/g;
113 s/AC_LIBOBJ\(epoll\)/: ;/g;
114 s/AC_LIBOBJ\(devpoll\)/: ;/g;
115 s/AC_LIBOBJ\(evport\)/: ;/g;
116 s/AC_LIBOBJ\(signal\)/: ;/g;
117 s/AC_LIBOBJ\(rtsig\)/: ;/g;
118 print "m4_include([libev.m4])\n" if /^AC_OUTPUT/;
120 ' <$LE/configure.in >configure.in
123 automake-1.7 --add-missing
127 CC="ccache gcc" ./configure --prefix=/opt/libev --disable-shared "$@"