Skip to content
/ libevent Public
forked from libevent/libevent

A public libevent repository. The official repository is still at at git://levent.git.sourceforge.net/gitroot/levent/libevent

License

Notifications You must be signed in to change notification settings

saldl/libevent

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NOTE

libevent upstream explicitly disables 'libevent_pthreads' when building for Windows.

This repository exists for the sole purpose of building pthreads-enabled libevent with mingw-w64.

Original README moved to README_libevent.md.

Build Instructions

NOTE

This build only covers what saldl needs. Shared libraries are disabled. OpenSSL support is disabled. mingw-w64 is the only dependency.

Win32

bld_ver="`git describe --dirty`"
bld_dir="libevent-${bld_ver#release-*}"-win32

mkdir ${bld_dir}

./autogen.sh

./configure --prefix='' --host=i686-w64-mingw32 --disable-shared \
            --disable-openssl --disable-samples  --disable-libevent-regress

make -j3


make DESTDIR=${PWD}/${bld_dir} install
zip --recurse-paths ${bld_dir}.zip ${bld_dir}

Win64

bld_ver="`git describe --dirty`"
bld_dir="libevent-${bld_ver#release-*}"-win64

mkdir ${bld_dir}

./autogen.sh

./configure --prefix='' --host=x86_64-w64-mingw32 --disable-shared \
            --disable-openssl --disable-samples  --disable-libevent-regress

make -j3


make DESTDIR=${PWD}/${bld_dir} install
zip --recurse-paths ${bld_dir}.zip ${bld_dir}

About

A public libevent repository. The official repository is still at at git://levent.git.sourceforge.net/gitroot/levent/libevent

Resources

License

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 86.7%
  • Roff 3.9%
  • CMake 3.8%
  • M4 2.5%
  • Python 2.2%
  • Shell 0.6%
  • Other 0.3%