]> git.llucax.com Git - software/libev.git/blobdiff - import_libevent
Add exceptions support to C++ interface.
[software/libev.git] / import_libevent
index e7322d70fa7a4d77c136d68782fa8d6535981a65..b6f54a6a465e93fdd53ddb59c277fdeb8957eea5 100755 (executable)
@@ -1,5 +1,7 @@
 #!/bin/sh
 
 #!/bin/sh
 
+LE=../libevent-1.4.0-beta
+
 if ! [ -e evbuffer.c ]; then
    echo do not run this programm unless you know what you are doing
    exit 1
 if ! [ -e evbuffer.c ]; then
    echo do not run this programm unless you know what you are doing
    exit 1
@@ -10,10 +12,12 @@ fi
 cvs update -AdP libev
 rsync -avP libev/. . --exclude CVS
 
 cvs update -AdP libev
 rsync -avP libev/. . --exclude CVS
 
-LE=../libevent-1.4.0-beta
+rm -f configure.ac
 
 cp $LE/evdns.h .
 
 
 cp $LE/evdns.h .
 
+perl -i -pe 's%^/.libevent-include./%#include "event_compat.h"%' event.h
+
 perl -ne '
    s/\s+char buf\[64\];/\tchar buf[96];/;
    if (/#include "event.h"/) {
 perl -ne '
    s/\s+char buf\[64\];/\tchar buf[96];/;
    if (/#include "event.h"/) {
@@ -91,7 +95,7 @@ perl -ne '
    s/\bevent-internal.h\b//g;
    s/\bevsignal.h\b//g;
    s/^(man_MANS\s*=)/$1 ev.3 /;
    s/\bevent-internal.h\b//g;
    s/\bevsignal.h\b//g;
    s/^(man_MANS\s*=)/$1 ev.3 /;
-   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 /;
+   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 /;
    s/^(include_HEADERS\s*=)/$1 ev.h event_compat.h ev++.h /;
    s/^(CORE_SRC\s*=)/$1 ev.c /;
    s/^(SYS_LIBS\s*=)/$1 -lm /;
    s/^(include_HEADERS\s*=)/$1 ev.h event_compat.h ev++.h /;
    s/^(CORE_SRC\s*=)/$1 ev.c /;
    s/^(SYS_LIBS\s*=)/$1 -lm /;
@@ -103,7 +107,8 @@ perl -ne '
    #s/-Wall/-Wall -Wno-comment -Wunused-function -Wno-unused-value/;
    s/-Wall//g;
    #s/libevent/libev/g;
    #s/-Wall/-Wall -Wno-comment -Wunused-function -Wno-unused-value/;
    s/-Wall//g;
    #s/libevent/libev/g;
-   s/AM_INIT_AUTOMAKE\s*\(.*,(.*)\)/AM_INIT_AUTOMAKE(libevent-$1+libev,1.8)/;
+   #VERSION
+   s/AM_INIT_AUTOMAKE\s*\(.*,(.*)\)/AM_INIT_AUTOMAKE(libevent-$1+libev,2.01)/;
    s/AC_LIBOBJ\(select\)/: ;/g;
    s/AC_LIBOBJ\(poll\)/: ;/g;
    s/AC_LIBOBJ\(kqueue\)/: ;/g;
    s/AC_LIBOBJ\(select\)/: ;/g;
    s/AC_LIBOBJ\(poll\)/: ;/g;
    s/AC_LIBOBJ\(kqueue\)/: ;/g;