summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2020-05-01Release 0.2.12Robin Linden
2020-03-22Release 0.2.11Robin Linden
2019-05-30Release 0.2.10Robin Lindén
2019-01-12Release 0.2.9Robin Lindén
2018-10-07Release 0.2.8Robin Lindén
2018-10-07Default to not defining MIN_LOGGER_LEVEL in CMakeMaxim Biro
That way CMake's behavior matches what autotools does -- letting toxcore/logger.h handle the default case.
2018-08-30Simplify configure.ac for faster autotools build.iphydf
* Remove ability to disable logging. * Remove unused `NCURSES_FOUND`. * Remove checks for stdbool and existence of int types. These mostly exist, and if they don't, we'll just fail to compile. * Remove checks for various functions. * Add check for `explicit_bzero` and `memset_s`.
2018-08-30Release 0.2.7Robin Lindén
2018-08-16Release 0.2.6Robin Lindén
2018-08-08Release 0.2.5Robin Lindén
2018-07-22Run Clang global static analysis on Travis.iphydf
This uses a single .cc file containing almost all the code in the repository to perform whole program analysis.
2018-07-20Release v0.2.4Robin Lindén
2018-07-19Use string comparison operator in configure.ac.iphydf
.. to compare strings. `==` is for numeric values.
2018-07-01Simplify Travis CI builds.iphydf
Have one script per build. This means more duplication between the scripts, but it's much easier to understand and to run locally.
2018-06-25Release v0.2.3Robin Lindén
2018-04-18Release v0.2.2Robin Lindén
2018-03-09Update version to 0.2.1.iphydf
2018-02-09Remove libcheck from the dependencies.iphydf
We're not gaining much from this library, and it's a burden, especially for windows development.
2018-01-20Remove nTox from the repo.iphydf
It's a maintenance burden nobody uses. Let's make toxic the official console client, instead.
2018-01-08Bump toxcore version to 0.2.0.iphydf
We're not releasing yet, but projects preparing for the release will want to build against this version in master.
2017-12-26Release v0.1.11Robin Lindén
2017-11-15Add support of IPv6 disablingDiadlo
2017-08-06Release v0.1.10Robin Lindén
2017-06-06Release v0.1.9Robin Lindén
2017-04-27Release v0.1.8Robin Lindén
2017-04-22Revert "Implement tox_loop"Maxim Biro
This reverts commit 5ff099763b1f56414572e1c12eb2f003117db5a0.
2017-04-01Implement tox_loopAnsa89
2017-03-26Release v0.1.7Robin Lindén
2017-01-26Release v0.1.6.iphydf
2017-01-19Release v0.1.5.iphydf
2017-01-18Setup autotools to read .so version info from a separate fileSergey 'Jin' Bostandzhyan
We want to use the same libtool style .so versions in both build systems, ideally both systems should read the version information from the same configuration file. This commit introduces an so.version configuration file and sets up the autotools to use it. The version numbers in so.version define the ABI compatibility and should be updated prior to each release. implements #323
2017-01-12Release v0.1.4.iphydf
2017-01-11Remove `TOX_DEBUG` and have asserts always enabled.iphydf
These are cheap asserts. I've also replaced the fprintf's with `LOGGER_ERROR` calls.
2017-01-10Explicitly check if compiler supports C99Sergey 'Jin' Bostandzhyan
c-tocxocre will start using C99 code, so check if the compiler supports it and abort in configure with an error if it does not. closes #413
2017-01-05Release v0.1.3.iphydf
2017-01-03Add a separate configure switch for DHT_bootstrapSergey 'Jin' Bostandzhyan
closes #319
2016-12-23Release v0.1.2iphydf
2016-12-17Release v0.1.1iphydf
2016-12-14Release 0.1.0.iphydf
Fixes #216.
2016-12-13Fix `--enable-logging` flag in autotools configure script.iphydf
We also never really tested this, because we run make distcheck, which does another configure with default flags instead of the ones we passed. Fixes #317.
2016-11-24Version Patch v0.0.4 => v0.0.5Gregory Mullen (grayhatter)
2016-11-14v0.0.4iphydf
2016-11-07Release v0.0.3.iphydf
2016-10-30Version Patch v0.0.2Gregory Mullen (grayhatter)
2016-09-28v0.0.0 => v0.0.1Gregory Mullen (grayhatter)
2016-09-07Add debugging option to autotools configurationJfreegman
2016-08-17Try searching for libsodium with pkg-config in ./configure.iphydf
If libsodium can't be found with PKG_CHECK_MODULES, try AC_CHECK_LIB. If that also fails, abort configure. If a user passes --with-libsodium-libs explicitly, that overrides the pkg-config found location.
2016-01-30Fixes.irungentoo
Fixed bug from merged PR. Don't build useless files when building with libsodium.
2015-11-07Merge remote-tracking branch 'upstream/master' into rm-filesGregory Mullen (grayhatter)
2015-10-13Fix typo and change logger config optionEniz Vukovic