aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* vici: Make installation of Ruby Gem and Python Egg optionalTobias Brunner2015-05-211-5/+19
| | | | | | | | | | | | | | | | | | Installing them might not work well when building distro packages (e.g. with DESTDIR installs). It might be easier to install them later with a script in the distro package. When building from source on the local system it could still be useful to install the packages directly, which can be enabled with separate configure options. The main problem with DESTDIR installations of the Python Egg is that easy_install creates or modifies a file called easy-install.pth in the installation directory. So it's not actually possible to simply copy the results in DESTDIR over to the actual system as that file would have to be merged with any existing one. Fixes #914.
* Version bump to 5.3.1dr1Andreas Steffen2015-04-241-1/+1
|
* aesni: Provide a plugin stub for AES-NI instruction based crypto primitivesMartin Willi2015-04-151-0/+4
|
* configure: Check for __int128 type supportMartin Willi2015-04-141-0/+11
|
* Version bump to 5.3.0Andreas Steffen2015-03-271-1/+1
|
* Version bump to 5.3.0rc1Andreas Steffen2015-03-231-1/+1
|
* configure: Check optional py.test availability when building with python eggsMartin Willi2015-03-181-0/+2
|
* vici: Include python package in distributionMartin Willi2015-03-181-0/+1
|
* configure: Add --enable-python-eggs and --with-pythoneggdir optionsMartin Willi2015-03-181-0/+15
| | | | | Detect easy_install for Python egg installation to install any egg we provide in strongSwan.
* Version bump to 5.3.0dr2Andreas Steffen2015-03-161-1/+1
|
* files: Add simple plugin to load files from file:// URIsTobias Brunner2015-03-091-1/+5
|
* Remove obsolete _updown_espmark scriptTobias Brunner2015-03-061-1/+0
| | | | According to NEWS it was created to support kernels < 2.6.16.
* Version bump to 5.3.0dr1Andreas Steffen2015-02-261-1/+1
|
* configure: Use pkg-config to detect libiptc used by connmark/forecastTobias Brunner2015-02-231-0/+6
| | | | | This ensures the library is available. On Debian/Ubuntu it is a dynamic library provided by the iptables-dev package.
* forecast: Add the broadcast/multicast forwarding plugin called forecastMartin Willi2015-02-201-0/+4
|
* connmark: Add a plugin stubMartin Willi2015-02-201-0/+4
|
* unit-tester: Drop the old unit-tester libcharon pluginMartin Willi2015-02-201-4/+0
| | | | | | While it has some tests that we don't directly cover with the new unit tests, most of them require special infrastructure and therefore have not been used for a long time.
* libcharon: Add a test runnerMartin Willi2015-02-201-0/+1
|
* attr-sql: Move plugin to libcharonMartin Willi2015-02-201-3/+3
|
* attr: Move plugin to libcharonMartin Willi2015-02-201-3/+3
|
* resolve: Move plugin back to libcharonMartin Willi2015-02-201-3/+3
| | | | Since pluto is gone, all existing users build upon libcharon.
* configure: Load SQL backends after crypto pluginsTobias Brunner2015-02-101-2/+2
| | | | | | | | | If the MySQL client library is linked against OpenSSL the mysql plugin will cause a segmentation fault when it is unloaded after the openssl plugin has already been deinitialized. This is very similar to the issues with curl (see 44b6a34d438f). Fixes #814.
* Version bump to 5.2.2Andreas Steffen2014-12-231-1/+1
|
* pki: Add simple PKCS#12 display commandTobias Brunner2014-12-121-0/+1
|
* pki: Load hmac plugin which is required to decrypt PKCS#12 containersTobias Brunner2014-12-121-1/+1
|
* Version bump to 5.2.2rc1Andreas Steffen2014-12-121-1/+1
|
* bliss: Fix monolithic buildTobias Brunner2014-12-121-0/+1
| | | | | | | | | | | This requires moving test files so that the Makefile for the tests can be included after building libstrongswan, which requires the plugin when building monolithically. Due to this a static helper library is required as directly referring to object files (or source files) is not possible. It's also necessary to avoid any link-time dependency on libstrongswan in bliss_huffman, to avoid circular dependencies (bliss_huffman -> libstrongswan -> bliss -> bliss_huffman).
* Version bump to 5.2.2dr15.2.2dr1Andreas Steffen2014-11-291-1/+1
|
* Created framework for BLISS post-quantum signature algorithmAndreas Steffen2014-11-291-0/+4
|
* libhydra: Add test runnerTobias Brunner2014-10-301-0/+1
|
* Version bump to 5.2.1Andreas Steffen2014-10-181-3/+3
|
* kernel-pfroute: Check for RTM_IFANNOUNCE availabilityMartin Willi2014-10-141-0/+12
| | | | This message is not available on OS X.
* vici: Use "gem"-assisted vici ruby gem building and installationMartin Willi2014-10-101-0/+1
|
* configure: Add global --enable-ruby-gems and --with-rubygemdir optionsMartin Willi2014-10-101-0/+14
| | | | | This provides the options to build and install ruby gems for components providing them, such as vici.
* version bump to 5.2.1rc1Andreas Steffen2014-10-061-1/+1
|
* ext-auth: Add an ext-auth plugin invoking an external authorization scriptMartin Willi2014-10-061-0/+4
| | | | Original patch courtesy of Vyronas Tsingaras.
* Merged libpts into libimcvAndreas Steffen2014-10-051-10/+4
|
* configure: Load fetcher plugins after crypto base pluginsMartin Willi2014-09-241-3/+3
| | | | | | | | | | Some fetcher plugins (such as curl) might build upon OpenSSL to implement HTTPS fetching. As we set (and can't unset) threading callbacks in our openssl plugin, we must ensure that OpenSSL functions don't get called after openssl plugin unloading. We achieve that by loading curl and all other fetcher plugins after the base crypto plugins, including openssl.
* init: Provide a service file for charon-systemd using swanctlMartin Willi2014-09-221-0/+1
|
* systemd: Check if ./configure detected a systemd system unit directoryMartin Willi2014-09-221-0/+7
|
* systemd: Discover and check systemd libraries with pkg-config during configureMartin Willi2014-09-221-0/+10
|
* systemd: Provide a charon-systemd daemon targeting full systemd integrationMartin Willi2014-09-221-4/+7
|
* configure: Add additional includes when checking for linux/fib_rules.hTobias Brunner2014-08-111-2/+2
| | | | This seems to be required on Cent OS 6.5.
* imv-swid: Use pkg-config to check for libjson-cTobias Brunner2014-07-301-2/+4
| | | | | | | | | The package/library is called libjson-c on recent distributions. Some like Ubuntu 14.04 provide symlinks with the old name but these will eventually disappear. Using pkg-config allows us to easily check for it (with a fallback) and configure the proper compiler flags. Fixes #663.
* Version bump to 5.2.1dr1Andreas Steffen2014-07-161-1/+1
|
* Version bump to 5.2.0Andreas Steffen2014-07-081-1/+1
|
* conf: Document swanctl optionsTobias Brunner2014-06-301-0/+1
|
* conf: Document aikgen optionsTobias Brunner2014-06-301-0/+1
|
* autoconf: Replace --disable-tools option with --disable-scepclientTobias Brunner2014-06-301-7/+7
| | | | | Since using a separate option for pki this was the only tool that was still enabled by that option.
* Remove kernel-klips pluginTobias Brunner2014-06-191-4/+0
|