|
Revision tags: release-2.2.1-alpha, release-2.1.12-stable |
|
| #
2cfa7ff7 |
| 28-Jun-2020 |
Azat Khuzhin <[email protected]> |
Bump version to 2.1.12-stable (w/o ABI breakage)
|
| #
9a94cd9b |
| 27-May-2020 |
yuangongji <[email protected]> |
remove FindGit.cmake, improve `git describe` command
(cherry picked from commit a9aa2b3607c8adf9846aa6a01e070130f4d6dcb9)
|
| #
2016f017 |
| 05-May-2020 |
Azat Khuzhin <[email protected]> |
Update list of cmake files for autotools dist archive
Fixes: #976 (cherry picked from commit f3bc532735c4ac91c5be31ed5f0ca58241a0e983)
|
| #
976f7d34 |
| 06-Nov-2019 |
Azat Khuzhin <[email protected]> |
Link with iphlpapi only on windows
Fixes: 9fecb59a ("Parse IPv6 scope IDs.") Refs: #923 (cherry picked from commit 1495f8b67a6061ac5c8dcbc42dd71398d6355c9a)
|
| #
f602211f |
| 29-Oct-2019 |
Philip Homburg <[email protected]> |
Parse IPv6 scope IDs.
(cherry picked from commit 9fecb59a94ef246088d7f3e0365c2fe80d0df2f4)
|
| #
5d1e8570 |
| 23-Aug-2019 |
yuangongji <[email protected]> |
autotools: attach doxygen target into all target
v2: disable man pages by default (cherry picked from commit f9c6a14ee089452c74e492edc674260a3717763e)
|
| #
7a85300a |
| 23-Aug-2019 |
yuangongji <[email protected]> |
cmake: attach doxygen target into all target
v2: Disable non-html generator for doxygen by default v3: convert cmake option to doxygen config (cherry picked from commit 1d1c19091f13b7e19015698a23f45
cmake: attach doxygen target into all target
v2: Disable non-html generator for doxygen by default v3: convert cmake option to doxygen config (cherry picked from commit 1d1c19091f13b7e19015698a23f454aa85f17ac3)
show more ...
|
| #
fdb8fb66 |
| 08-Aug-2019 |
ygj6 <[email protected]> |
Change the minimum version of automake to 1.13 and autoconf to 2.67
When I run make check via automake with a version of 1.12.6 or lower, I got this error:
/bin/sh: line 9: ./test_runner_epoll:
Change the minimum version of automake to 1.13 and autoconf to 2.67
When I run make check via automake with a version of 1.12.6 or lower, I got this error:
/bin/sh: line 9: ./test_runner_epoll: No such file or directory FAIL: test_runner_epoll /bin/sh: line 9: ./test_runner_select: No such file or directory FAIL: test_runner_select /bin/sh: line 9: ./test_runner_kqueue: No such file or directory FAIL: test_runner_kqueue /bin/sh: line 9: ./test_runner_evport: No such file or directory FAIL: test_runner_evport /bin/sh: line 9: ./test_runner_devpoll: No such file or directory FAIL: test_runner_devpoll /bin/sh: line 9: ./test_runner_poll: No such file or directory FAIL: test_runner_poll /bin/sh: line 9: ./test_runner_win32: No such file or directory FAIL: test_runner_win32 /bin/sh: line 9: ./test_runner_timerfd: No such file or directory FAIL: test_runner_timerfd /bin/sh: line 9: ./test_runner_changelist: No such file or directory FAIL: test_runner_changelist /bin/sh: line 9: ./test_runner_timerfd_changelist: No such file or directory FAIL: test_runner_timerfd_changelist
Open the Makefile generated by command ./autogen.sh && ./configure I can see the errors are caused by this line:
if $(TESTS_ENVIRONMENT) $${dir}$$tst $(AM_TESTS_FD_REDIRECT); then
$${dir}$$tst will expand to ./test_runner_epoll, but test_runner_epoll is only a target in test/include.am, not a file, so it print:
/bin/sh: line 9: ./test_runner_epoll: No such file or directory.
It seems like a bug in automake 1.12.6. The errors will disappear if I simply upgrade automake to 1.13, and upgrade autoconf to 2.65 (2.65 is the lowest version dependent by automake-1.13).
When I build with automake-1.13 and autoconf-2.66, I got another error:
configure.ac:667: error: AC_CHECK_SIZEOF: requires literal arguments
The code in configure.ac line 667 is :
AC_CHECK_SIZEOF(void *)
It is a bug in autoconf-2.66 : http://gnu-autoconf.7623.n7.nabble.com/AC-CHECK-SIZEOF-int-is-error-in-autoconf-2-66-td13537.html
Finally, everything works fine when using automake-1.13 and autoconf-2.67. Refs: #858
(cherry picked from commit 3f09e9230ab45008e0016b63fc1d3b05eb23e6ec)
show more ...
|
| #
877f2355 |
| 03-Aug-2019 |
Azat Khuzhin <[email protected]> |
Add Uninstall.cmake.in into dist archive
Fixes: #863 (cherry picked from commit f05ba671931e2b4e38459899f6f63f79f99869fe)
|
|
Revision tags: release-2.1.11-stable |
|
| #
5b723a66 |
| 01-Aug-2019 |
Azat Khuzhin <[email protected]> |
Bump version to 2.1.11-stable (with ABI breakage)
|
| #
2a333008 |
| 27-Jul-2019 |
yuangongji <[email protected]> |
Change autoconf version to 2.62 and automake version to 1.11.2
On my computer, the version of autoconf is 2.59 and automake is 1.9 I build with autogen.sh & configure & make and failed.
I find In M
Change autoconf version to 2.62 and automake version to 1.11.2
On my computer, the version of autoconf is 2.59 and automake is 1.9 I build with autogen.sh & configure & make and failed.
I find In Makefile.am: include/event2/event-config.h: config.h make-event-config.sed $(AM_V_GEN)test -d include/event2 || $(MKDIR_P) include/event2 $(AM_V_at)$(SED) -f $(srcdir)/make-event-config.sed < config.h > $@T $(AM_V_at)mv -f $@T $@
There are three undefined variables: MKDIR_P, AM_V_GEN and AM_V_at. Then I tried: - autoconf-2.60 / automake-1.10 - autoconf-2.61 / automake-1.11 - autoconf-2.62 / automake-1.11.2
And only autoconf-2.62 & automake-1.11.2 is ok.
Therefore, I recommend changing the autoconf version from 2.59 to 2.62 and automake version from 1.9 to 1.11.2.
Plus autoconf 2.59 is too old - 2003.12.16 [1], so as automake 1.9 - 2004.08.11 [2], while $(AM_V_GEN)/$(AM_V_at) had been introduced in 371a1237 back in 2012.
[1]: http://ftp.gnu.org/gnu/autoconf/ [1]: http://ftp.gnu.org/gnu/automake/
Fixes: 371a1237 ("Make quiet build even quieter") (cherry picked from commit 1947dd0ddbced0d8f9891656c820353f82261c52)
show more ...
|
| #
3660a4cc |
| 25-Jun-2019 |
Azat Khuzhin <[email protected]> |
Add README.md into dist archive
Fixes: #841 (cherry picked from commit 97488b2c28473b6be339e4c2325372d2425fe0aa, only the README.md part)
|
|
Revision tags: release-2.1.10-stable |
|
| #
f5bfd721 |
| 25-May-2019 |
Azat Khuzhin <[email protected]> |
Bump version to 2.1.10-stable everywhere
|
| #
7042ff24 |
| 15-May-2019 |
Azat Khuzhin <[email protected]> |
Add getopt into dist archive
Fixes: #815 (cherry picked from commit c8b403a81bda3a9603ffda9c393a823719fda196)
|
|
Revision tags: release-2.1.9-beta |
|
| #
900f5c45 |
| 03-Feb-2019 |
Azat Khuzhin <[email protected]> |
Bump version to 2.1.9-beta everywhere
|
|
Revision tags: release-2.0.23-beta |
|
| #
bf3a67cf |
| 31-Oct-2018 |
Azat Khuzhin <[email protected]> |
Add cmake rules into dist archive
Fixes: #502 Refs: #551 (cherry picked from commit 69bc2da79fb2f358c22feba45e9ad4752729d320)
|
| #
7e56c8b2 |
| 22-Apr-2018 |
Azat Khuzhin <[email protected]> |
Merge branch 'pull-628'
* pull-628: Give priority to the build directory headers Do not ship evconfig-private.h in dist archive
Closes: #628 (cherry picked from commit a5f19422fdc91cf1e645fc318
Merge branch 'pull-628'
* pull-628: Give priority to the build directory headers Do not ship evconfig-private.h in dist archive
Closes: #628 (cherry picked from commit a5f19422fdc91cf1e645fc318a174f33f132b9ac)
show more ...
|
| #
2f060c5f |
| 14-May-2017 |
stenn <[email protected]> |
Provide Makefile variables LIBEVENT_{CFLAGS,CPPFLAGS,LDFLAGS}
This will allow a parent package to specify compiler, CPP, and linker flags to a libevent built as a sub-package.
Picked-from: #506 Clo
Provide Makefile variables LIBEVENT_{CFLAGS,CPPFLAGS,LDFLAGS}
This will allow a parent package to specify compiler, CPP, and linker flags to a libevent built as a sub-package.
Picked-from: #506 Closes: #506 (cherry picked from commit 1a448088e3aef5b6baf161eb0f6d17e18a77313c)
show more ...
|
| #
08658136 |
| 29-Jan-2017 |
Azat Khuzhin <[email protected]> |
Include openssl-compat.h into dist archive
Refs: nmathewson/Libevent@140 Refs: http://archives.seul.org/libevent/users/Jan-2017/msg00001.html (cherry picked from commit 7bc822cad9d06775e366e6c5ac523
Include openssl-compat.h into dist archive
Refs: nmathewson/Libevent@140 Refs: http://archives.seul.org/libevent/users/Jan-2017/msg00001.html (cherry picked from commit 7bc822cad9d06775e366e6c5ac523b13522a6a81)
show more ...
|
|
Revision tags: release-2.1.8-stable |
|
| #
9b63b5d4 |
| 22-Jan-2017 |
Azat Khuzhin <[email protected]> |
Bump version to 2.1.8-stable everywhere
P.S. in referenced commit I made a mistake and instead of *-rc* I wrote *-beta*.
See-also: f4489b8323cda0bf8eed7c1353911a852d7a947c ("Bump version to 2.1.7-b
Bump version to 2.1.8-stable everywhere
P.S. in referenced commit I made a mistake and instead of *-rc* I wrote *-beta*.
See-also: f4489b8323cda0bf8eed7c1353911a852d7a947c ("Bump version to 2.1.7-beta everywhere")
show more ...
|
| #
bed52ff6 |
| 22-Jan-2017 |
Azat Khuzhin <[email protected]> |
VERSION_INFO should me equal to library version
This reverts commit 43243b9d55efcd0e6e2767a5c45bc7da46cff60c (I shouldn't do this).
|
| #
a7513cc9 |
| 15-Jan-2017 |
Azat Khuzhin <[email protected]> |
automake: do not use serial-tests if parallel-test-harness available
Revert: 61179dec7716975a151c6dae4524ae504d05780e ("automake: define serial-tests only if automake have this option") Revert: Reve
automake: do not use serial-tests if parallel-test-harness available
Revert: 61179dec7716975a151c6dae4524ae504d05780e ("automake: define serial-tests only if automake have this option") Revert: Revert: 44d755e00e249c09914cf35089c16735df82e270 ("test/automake: don't use paralell test harness (since automake 1.12)")
show more ...
|
| #
43243b9d |
| 20-Jan-2017 |
Azat Khuzhin <[email protected]> |
Bump VERSION_INFO so that libraries symlinks will have the same version
Fixes: f4489b8323cda0bf8eed7c1353911a852d7a947c ("Bump version to 2.1.7-beta everywhere")
|
|
Revision tags: release-2.1.7-rc |
|
| #
f4489b83 |
| 01-Nov-2016 |
Azat Khuzhin <[email protected]> |
Bump version to 2.1.7-beta everywhere
- cmake basic - cmake detecting from git -- event_fuzzy_version_from_git() - autotools - win32 - appveyor
|
|
Revision tags: release-2.1.6-beta |
|
| #
51019e94 |
| 13-Jul-2016 |
Azat Khuzhin <[email protected]> |
Bump version to 2.1.6-beta everywhere
- cmake basic - cmake detecting from git -- event_fuzzy_version_from_git() - autotools - win32 - appveyor
|