Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add option to disable installing the Python module | Jack Lloyd | 2019-08-16 | 1 | -0/+4 |
| | |||||
* | Fix crash if unknown OS is passed to configure | Jack Lloyd | 2019-07-18 | 1 | -3/+2 |
| | | | | We use it before it is validated ... | ||||
* | Add support for OS-specific feature macros | Jack Lloyd | 2019-07-15 | 1 | -2/+10 |
| | | | | | | We already needed this but didn't have a first class notion for it. GH #2028 | ||||
* | Remove BearSSL provider | Jack Lloyd | 2019-07-05 | 1 | -1/+1 |
| | | | | | | BearSSL is much slower than Botan's builtins, and it is not commonly included in distributions so doesn't even have the advantage of ubiquity. | ||||
* | Log when an option is implicitly taken from the environment | Jack Lloyd | 2019-07-04 | 1 | -16/+22 |
| | | | | Since that can be confusing if it was not intended. GH #2015 | ||||
* | Ignore all deprecated headers when generating amalgamation | Jack Lloyd | 2019-06-08 | 1 | -3/+5 |
| | | | | | Previously was limited to botan.h which was the only one with a warning in it. | ||||
* | Lint fixes | Jack Lloyd | 2019-06-05 | 1 | -2/+2 |
| | |||||
* | Address some issues found by LGTM | Jack Lloyd | 2019-06-03 | 1 | -1/+1 |
| | |||||
* | Reorg documentation layout. Rename manual to handbook. | Jack Lloyd | 2019-05-31 | 1 | -4/+4 |
| | |||||
* | Fix lint | Jack Lloyd | 2019-05-22 | 1 | -1/+1 |
| | |||||
* | Merge GH #1960 Add option for setting arbitrary macros during build | Jack Lloyd | 2019-05-22 | 1 | -0/+8 |
|\ | |||||
| * | adaptions after code review | René Meusel | 2019-05-22 | 1 | -3/+3 |
| | | |||||
| * | add metavar | René Meusel | 2019-05-21 | 1 | -2/+2 |
| | | |||||
| * | allow to specify external compile definitions | René Meusel | 2019-05-21 | 1 | -0/+8 |
| | | |||||
* | | Merge GH #1964 Add configure helpers for Boost, enable Boost on AppVeyor | Jack Lloyd | 2019-05-22 | 1 | -1/+28 |
|\ \ | |/ |/| | |||||
| * | FIX: lint complaint + add some explaination | René Meusel | 2019-05-22 | 1 | -11/+19 |
| | | |||||
| * | add --boost-library-name configure option | René Meusel | 2019-05-22 | 1 | -1/+20 |
| | | |||||
* | | Merge GH #1957 Accept comments after #endif in amalgamation | Jack Lloyd | 2019-05-21 | 1 | -1/+1 |
|\ \ | |||||
| * | | Fix: allow comments after #endif in amalgamation | Hannes Rantzsch | 2019-05-21 | 1 | -1/+1 |
| |/ | |||||
* | | allow for multiple --with-external-libdir | René Meusel | 2019-05-21 | 1 | -5/+5 |
| | | |||||
* | | allow for multiple --with-external-includedir | René Meusel | 2019-05-21 | 1 | -4/+4 |
|/ | |||||
* | Add a shim for testing Botan using BoGo | Jack Lloyd | 2019-05-20 | 1 | -0/+18 |
| | |||||
* | Log the version of Python we are running configure under | Jack Lloyd | 2019-04-27 | 1 | -0/+1 |
| | |||||
* | Check parsing of maps | Jack Lloyd | 2019-04-18 | 1 | -5/+5 |
| | | | | | | | | Previous commit changed the parsing of <libs> and <frameworks> from being lists to maps. But this broke macOS certstore which defined frameworks on individual lines, causing only one to be used. Add a test that maps don't have duplicated entries, and fix the info.txt | ||||
* | Lint fixes | Jack Lloyd | 2019-04-18 | 1 | -10/+10 |
| | |||||
* | Add cross checks for compiler info | Jack Lloyd | 2019-04-18 | 1 | -3/+34 |
| | | | | Helps detect basic errors | ||||
* | Clean up libs/frameworks | Jack Lloyd | 2019-04-17 | 1 | -20/+11 |
| | | | | Parse as map instead of list | ||||
* | Make the ISA list a list | Jack Lloyd | 2019-04-17 | 1 | -10/+10 |
| | |||||
* | Add a option for setting path to trusted CA list | Jack Lloyd | 2019-04-10 | 1 | -0/+21 |
| | | | | Related to #1885 | ||||
* | Rename 'darwin' target to 'macos' | Jack Lloyd | 2019-03-27 | 1 | -3/+3 |
| | | | | | Both because that's the more common term, and because iOS/watchOS also uses the Darwin kernel, but we have a distinct target for mobile. | ||||
* | fix: cmake build | Tim Oesterreich | 2019-02-28 | 1 | -1/+1 |
| | |||||
* | Fix with debug info | Jack Lloyd | 2019-02-18 | 1 | -1/+1 |
| | |||||
* | Remove print | Jack Lloyd | 2019-02-17 | 1 | -1/+0 |
| | |||||
* | Name pdb file properly | Jack Lloyd | 2019-02-17 | 1 | -11/+17 |
| | | | | GH #1831 | ||||
* | Use /Fd flag when building lib with MSVC | Jack Lloyd | 2019-02-14 | 1 | -5/+11 |
| | | | | See #1831 | ||||
* | Shush pylint | Jack Lloyd | 2019-02-05 | 1 | -0/+2 |
| | |||||
* | Add --extra-cxxflags option | Jack Lloyd | 2019-02-05 | 1 | -4/+10 |
| | | | | GH #1826 | ||||
* | Strip botan includes when processing ISA header in amalgamation | Jack Lloyd | 2019-01-14 | 1 | -1/+2 |
| | | | | Fixes #1812 | ||||
* | Ignore trailing whitespace in header guards | Jack Lloyd | 2019-01-13 | 1 | -2/+3 |
| | | | | | | | | | | | This is specifically needed to handle CRLF lines in Python2, otherwise the regex for header guards does not match and building the amalgamation fails. This only occured if a header was edited on Windows then later a build using amalgamation attempted on Linux. Closes #1763 | ||||
* | Better output when we can't identify the compiler by macro | Jack Lloyd | 2019-01-04 | 1 | -0/+6 |
| | |||||
* | Fixes for XLC | Jack Lloyd | 2018-12-31 | 1 | -1/+1 |
| | | | | | | XLC 16 changed which macros are used to identify it. Older versions of XLC didn't work correctly anyway (#1581 #1509 etc), so just drop support for recognizing those versions. | ||||
* | Add --no-store-vc-rev option for use in CI builds | Jack Lloyd | 2018-12-23 | 1 | -1/+4 |
| | | | | | | | This skips putting the git revision in the build.h header. This value changing every time means we effectively disable ccache's direct mode (which is faster than preprocessor mode) and also prevent any caching of the amalgamation file (since version.cpp expands the macro). | ||||
* | Fix a few small problems in configure | Jack Lloyd | 2018-12-03 | 1 | -8/+8 |
| | | | | Lint warnings, etc | ||||
* | Print the version and revision at the very start of configure.py output | Jack Lloyd | 2018-12-03 | 1 | -0/+3 |
| | | | | Makes it easier to debug things like #1763 | ||||
* | Add --disable-bmi2, --disable-rdseed, --disable-rdrand flags | Jack Lloyd | 2018-11-09 | 1 | -1/+1 |
| | | | | GH #1721 #1718 | ||||
* | Fix issue when CXX was set to 'ccache g++' see ↵ | Jack Lloyd | 2018-11-02 | 1 | -1/+1 |
| | | | | https://github.com/randombit/botan-rs/pull/9 | ||||
* | Rename --disable-sha to --disable-sha-ni | Jack Lloyd | 2018-10-26 | 1 | -1/+1 |
| | | | | | Which should hopefully be less confusing, and optparse will accept the truncated version so no compat problem. GH #1718 | ||||
* | Canonicalize OS name first | Jack Lloyd | 2018-10-18 | 1 | -11/+13 |
| | | | | | | We need the canonical OS name to be able to look up the relevant data for defaults, but the defaults need to be set before the rest of the canonicalization code runs. | ||||
* | Add option to enable/disable generation of pkg-config file | Jack Lloyd | 2018-10-18 | 1 | -7/+17 |
| | | | | | | | Plus adds os info field to disable by default for systems where pkg-config is not commonly used. Closes #1268 | ||||
* | Set default compiler in the info files instead of in configure source | Jack Lloyd | 2018-10-18 | 1 | -22/+19 |
| |