]> git.llucax.com Git - software/libev.git/blobdiff - import_libevent
Add exceptions support to C++ interface.
[software/libev.git] / import_libevent
index e13ec927f23f22bd626440da3b3c04d2166bf8d9..b6f54a6a465e93fdd53ddb59c277fdeb8957eea5 100755 (executable)
@@ -1,5 +1,7 @@
 #!/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
@@ -10,10 +12,12 @@ fi
 cvs update -AdP libev
 rsync -avP libev/. . --exclude CVS
 
-LE=../libevent-1.4.0-beta
+rm -f configure.ac
 
 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"/) {
@@ -103,7 +107,8 @@ perl -ne '
    #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.81)/;
+   #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;