| 2cfa7ff7 | 28-Jun-2020 |
Azat Khuzhin <[email protected]> |
Bump version to 2.1.12-stable (w/o ABI breakage) |
| 5b723a66 | 01-Aug-2019 |
Azat Khuzhin <[email protected]> |
Bump version to 2.1.11-stable (with ABI breakage) |
| f5bfd721 | 25-May-2019 |
Azat Khuzhin <[email protected]> |
Bump version to 2.1.10-stable everywhere |
| 7c669cc7 | 16-Mar-2019 |
Azat Khuzhin <[email protected]> |
Suppress int conversion warnings in getopt_long compatibility
(cherry picked from commit 61e4a651d7054d41c8669c2a5340679b64f6ecf6) |
| 900f5c45 | 03-Feb-2019 |
Azat Khuzhin <[email protected]> |
Bump version to 2.1.9-beta everywhere |
| 7f161902 | 04-Feb-2019 |
Azat Khuzhin <[email protected]> |
cmake: fix checking of devpoll backend (like in autotools, by devpoll.h existence)
(cherry picked from commit 8e87de3c24cad940516f49aa0466cfe53fa042bf) |
| b3af7bdd | 19-Jun-2018 |
Azat Khuzhin <[email protected]> |
Cleanup __func__ detection
First of all __func__ is not a macro, it is char[] array, so the code that we had before in cmake, was incorrect, i.e.: #if defined (__func__) #define EVENT____func__
Cleanup __func__ detection
First of all __func__ is not a macro, it is char[] array, so the code that we had before in cmake, was incorrect, i.e.: #if defined (__func__) #define EVENT____func__ __func__ #elif defined(__FUNCTION__) #define EVENT____func__ __FUNCTION__ #else #define EVENT____func__ __FILE__ #endif
So just detect do we have __func__/__FUNCTION__ in configure/cmake before build and define EVENT__HAVE___func__/EVENT__HAVE___FUNCTION__ to use the later to choose which should be used as a __func__ (if it is not presented).
Closes: #644 (cherry picked from commit e85818d24850540d220e6d7bc0a30653ba2135f2)
show more ...
|
| 8ab60087 | 16-Jun-2018 |
Philip Prindeville <[email protected]> |
Get rid of macros which are never used
There are no expansions of these macros or tests for their existence.
Signed-off-by: Philip Prindeville <[email protected]> (cherry picked from co
Get rid of macros which are never used
There are no expansions of these macros or tests for their existence.
Signed-off-by: Philip Prindeville <[email protected]> (cherry picked from commit 755896efe25e5caecd498c08cce072c713720783)
show more ...
|
| 8983e511 | 01-Sep-2017 |
Carlo Marcelo Arenas Belón <[email protected]> |
test: fix 32bit linux regress
(cherry picked from commit 63c4bf78d6af3c6ff46d2e8e4b53dd9f577a9ca9) |
| ebd12e6d | 14-Mar-2017 |
Azat Khuzhin <[email protected]> |
Merge branch 'win32-fixes'
This patchset fixes win32 builds after some previous patches (referenced in particular commits), and also removes some quirks for win32.
* win32-fixes: test: do not ret
Merge branch 'win32-fixes'
This patchset fixes win32 builds after some previous patches (referenced in particular commits), and also removes some quirks for win32.
* win32-fixes: test: do not return void log/win32: fix exporting extern variable log-internal: missing extern "C" log: remove USE_GLOBAL_FOR_DEBUG_LOGGING cmake: Export missing symbols for win32 cmake: eliminate EVENT_BUILDING_REGRESS_TEST, since we link with shared libs test: windows doesn't have WNOWAIT cmake: clean not used #defines from event-config.h cmake: add <pthread.h> only for non-win32
(cherry picked from commit d84f0205453941235b0e04729098d4329c189bba)
show more ...
|
| 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 ...
|
| 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 |
| 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 |
| 683f5568 | 05-Jan-2015 |
Nick Mathewson <[email protected]> |
Increment version to 2.1.5-beta |
| 61931871 | 28-Mar-2014 |
Azat Khuzhin <[email protected]> |
tree.h: drop duplicated content of tree.h
Introduced in 9859bc783adcd51729b3d7563902ac8caca67b42 ("r15764@tombo: nickm | 2007-12-31 15:46:16 -0500") |
| de268feb | 21-Mar-2014 |
Nick Mathewson <[email protected]> |
Increment version to 2.1.4-alpha-dev |
| d08273ec | 16-Mar-2014 |
Nick Mathewson <[email protected]> |
Increment version to 2.1.4-alpha |
| 57abb359 | 12-Mar-2014 |
Nick Mathewson <[email protected]> |
Fix consts in WIN32-Code/getopt*.[ch] |
| f665d5cb | 24-Feb-2014 |
Nick Mathewson <[email protected]> |
Stop checking for inet_aton; we don't use it.
We had cmake and autoconf tests for the inet_aton function... but we never actually use it any more.
(The autoconf tests still use the callability of i
Stop checking for inet_aton; we don't use it.
We had cmake and autoconf tests for the inet_aton function... but we never actually use it any more.
(The autoconf tests still use the callability of inet_aton to decide whether we need to link against -lresolv)
Reported by Harlan Stenn.
show more ...
|
| 8697b99c | 14-Jan-2014 |
Joakim Soderberg <[email protected]> |
Forgotten headers for old nmake project compatability. |
| 86df3eda | 17-Dec-2013 |
Joakim Soderberg <[email protected]> |
Change the BSD license from 4 to 3-clause.
This makes it GPL compatible. Changing the license from 4 to 3-clause BSD license is OK according to a Berkley announcement on July 22, 1999 by William Hos
Change the BSD license from 4 to 3-clause.
This makes it GPL compatible. Changing the license from 4 to 3-clause BSD license is OK according to a Berkley announcement on July 22, 1999 by William Hoskins, the director of the fofice of technology licensing for Berkley:
ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
show more ...
|
| ce14defe | 13-Dec-2013 |
Joakim Soderberg <[email protected]> |
Generate a dummy evconfig-private.h so things build properly.
Windows used to have an empty file for this before. |
| e415196a | 09-Dec-2013 |
Joakim Soderberg <[email protected]> |
Initial CMake commit. |
| f8d80a28 | 02-May-2013 |
Nick Mathewson <[email protected]> |
Bump version to 2.1.3-alpha-dev |
| dd4be76f | 30-Apr-2013 |
Nick Mathewson <[email protected]> |
Incremement version to 2.1.3-alpha |