aboutsummaryrefslogtreecommitdiffstats
path: root/src/build-data/makefile/unix_shr.in
Commit message (Collapse)AuthorAgeFilesLines
* Make the shared library an included fragment like pythonlloyd2014-01-071-125/+0
| | | | | Renamed make target to gmake because I'm pretty sure += and ifdef on variables is gmake specific.
* Move python to src, add to main makefilelloyd2014-01-071-6/+7
|
* Move asio tls serverlloyd2014-01-011-1/+1
|
* Rename targetlloyd2014-01-011-9/+9
|
* Return errors in pubkey testslloyd2014-01-011-5/+2
|
* s/check/test/glloyd2014-01-011-9/+11
|
* Make eax_test example (which reads LTC's EAX test file) an actuallloyd2013-12-311-1/+1
| | | | | test. Update to new AEAD api. Currently requires boost_regex (for tests only), done via hardcoding in makefile template.
* Add AVX2 compiler flags for GCC and Clang. Tidy compiler option ordering.lloyd2013-12-141-2/+2
|
* Always include modules requiring ISA extensions as long as thelloyd2013-04-171-13/+13
| | | | | | | | | | | compiler and target platform might support it. For instance the AES SSSE3 code is now always in any x86 build, with just that specific file being compiled with -mssse3. Since we'll only call that code if cpuid confirms it works at runtime, we don't have portability issues, and it can be safely included in generic builds (eg for distributions). Tweak how machine specific compiler flags are generated to be a bit easier to maintain.
* Remove amalg on distcleanlloyd2011-06-011-0/+1
|
* Modify soname to match Unix conventions at suggestion of Debianlloyd2011-05-121-4/+5
| | | | | | | | | | maintainer. Namespace the headers in /usr/local/include/botan-1.9/botan, so multiple versions can be installed in parallel. Down version to 1.9.18 since there are a good number of changes in this release already.
* Integrate building docs using Sphinx and Doxygen into the makefilelloyd2011-04-181-15/+17
| | | | | | | | | | | | | proper. Enabled using --use-sphinx and --use-doxygen options, both of which default to false. If Sphinx isn't enabled, the ReST sources are copied directly (a case where having a very readable source format comes in handy...) The reference manual (either Sphinx processed into HTML, or the raw source) and the Doxygen output (if enabled) are copied into the doc directory upon install on Unix. Currently not done on Windows, the install target is fairly bogus there currently, and hasn't been tested in some time.
* Tick version numbers to 1.10.0lloyd2011-04-141-1/+1
| | | | | | | | | | | | | | More documentation updates. The clean target wasn't removing one of the symlinks. In the self-test application, warn if the version we are linked against does not match the version we were built against. This always indicates a problem. Someone who had an older version installed on their system got very confused when the test app was linked against it at runtime; this warning would have saved a couple hours of puzzling by me. This would also have helped avoid the nasty bug in 1.8.3
* I think this fixes the soname stufflloyd2011-04-111-3/+2
|
* I belive this check in fixes PR 113 by making shared library sonameslloyd2011-04-061-3/+4
| | | | match the norman Unix conventions.
* Lowercase DOCDIR to match common conventionslloyd2010-01-291-1/+1
|
* Fix make doxygenlloyd2009-12-291-1/+1
|
* Remove long #### blocks for readabilitylloyd2009-11-201-24/+8
|
* Add more or less functional integration with Boost.Python. Uselloyd2009-10-091-1/+1
| | | | | --use-boost-python to enable creating a second makefile, Makefile.python, which has targets for building and installing the Python module.
* Change the makefile template language somewhat. Previously variableslloyd2009-07-011-37/+37
| | | | | | | | | | | | | | | | | had been denoted with @{var:NAME}, this has changed to %{NAME}. This is pretty much a wash for configure.pl but it makes it much easier to process the templates using Python's string.Template. The logic being the 'var:' prefix had been to support conditional statements in the templates (using an 'if:' prefix), but this functionality was not being used and support for it is removed from configure.pl in this revision. For a similiar reason, rename a number of template variables with hyphens in their name to use underscores instead. This is slightly more consistent anyway (since many variable names had already used _ instead of -) but more importantly makes them much easier to deal with using aforementioned Python template code. This should not result in any user-visible change (unless I messed up).
* Patch to fix --as-needed bug was slightly wrong: linked to -lbotan-@{version},lloyd2009-06-061-1/+1
| | | | | but with the most recent change to decouple version # and so version this is wrong - use @{var:so_version} instead.
* Fix Gentoo bug 272242lloyd2009-06-061-2/+2
|
* Allow for the shared library soname to stay fixed even when the versionlloyd2009-05-131-8/+5
| | | | number increments, for stable releases that don't affect binary compat.
* Make installation a little noisierlloyd2008-11-131-2/+2
|
* In Makefiles and pkg-config / botan-config, use -lbotan-@{var:version}lloyd2008-11-071-1/+1
| | | | | | | | so we link against the specific intended version of the library, for instance -lbotan-1.7.20 rather than simply -lbotan This again seems especially an improvement where you want more than one version installed (1.6 vs 1.7, for instance).
* Provide pkg-config file as botan-$major$minor.pc, so it can be used like:lloyd2008-11-061-2/+2
| | | | | | | $ pkg-config botan-17 --libs -L/usr/local/lib -lbotan -lm -lpthread -lrt to make it easier to have multiple versions of Botan installed and in use at the same time.
* Install pkg-config file to /lib/pkgconfiglloyd2008-10-221-3/+7
|
* Delete generated botan.pc on make distcleanlloyd2008-10-151-1/+1
|
* Only delete Doxygen files on distclean, not regular cleanlloyd2008-10-131-1/+1
|
* Add basic support for Doxygen, including a make targetlloyd2008-10-131-1/+5
|
* Rename makefile variable INSTALLROOT to DESTDIR for autotools compatabilitylloyd2008-09-301-6/+6
|
* Remove the misc dir:lloyd2008-09-291-0/+132
Moved XS, Boost Python, and SWIG wrappers to new toplevel directory 'wrappers' Moved NIST X.509 test suite into checks directory Move the build information used by configure.pl to src/build-data Move scripts directory to doc (for lack of a better spot)