aboutsummaryrefslogtreecommitdiffstats
path: root/aclocal.m4
Commit message (Collapse)AuthorAgeFilesLines
* Enable more threads for fltoOndrej Zajicek2019-08-011-1/+1
|
* Filters: If somebody doesn't like _Thread_local, don't fail for now, just be ↵Jan Maria Matejka2019-05-231-1/+20
| | | | | | | a little slower. When the parallel execution comes into place, we'll likely enforce this C11 feature. It's much simpler and also faster than pthread_[sg]etspecific().
* Fixed link time optimizer check for FreeBSDMaria Matejka2019-02-271-0/+24
|
* Bison: A bit more verbose error messages in config.Jan Maria Matejka2018-08-141-0/+2
|
* M4: generate synchronization linesJan Maria Matejka2018-08-141-0/+19
| | | | | | This also includes Bison version check. Versions before 3.0 don't support them in a reliable way and we don't promise to work with versions older than 2.4.
* Android: check for extra libs needed for buildMaria Matejka2018-06-261-0/+65
|
* Switchoff for MPLS in kernel.Maria Jan Matejka2017-12-101-0/+35
|
* Remove autoconf macros for time_t and alignmentOndrej Zajicek (work)2017-05-161-88/+0
| | | | | Replaced by constant compile-time expressions. CPU_STRUCT_ALIGN is not really correct, but is consistent with the old behavior.
* Minor autoconf cleanupsOndrej Zajicek (work)2017-05-161-66/+130
| | | | | | | | Make indentation and quotation consistent in configure macros. Also remove --with-sysinclude option, which was broken for 7 years and nobody complained. Thanks to Ruben Kerkhof for source patches.
* Some more autoconf cleanupsOndrej Zajicek (work)2017-05-161-83/+2
| | | | | | | Replace integer type width detection with C99 fixed-width types. Also remove some unused or obsolete code. Thanks to Ruben Kerkhof for the patchset.
* Some autoconf cleanupsOndrej Zajicek (work)2017-03-141-12/+17
| | | | | | | | | The patch allows to use autoreconf, replaces some long obsolete constructs and does some other minor cleanups. Also, the file configure.in is renamed to configure.ac, as the old name has been deprecated for a long time. Thanks to Ruben Kerkhof for the patchset.
* BFD protocol, ready for release.Ondrej Zajicek2013-11-191-0/+12
| | | | Supports OSPF and BGP and also statically configured sessions.
* Adds two new default GCC options.Ondrej Zajicek2013-04-171-13/+17
| | | | | | | | Adds two new default GCC options related to optimizations (-fno-strict-aliasing and -fno-strict-overflow). This should fix some hyperaggressive GCC optimizations. Also updates autoconf option detection.
* Cleanup in sysdep KRT code, part 2.Ondrej Zajicek2012-04-301-17/+0
| | | | | Remove support for historic Linux kernels, merge krt-iface, krt-set and krt-scan stub headers.
* BGP Extended communities.Ondrej Zajicek2011-08-141-1/+4
|
* Minor fixes to previous patches.Ondrej Zajicek2010-04-021-0/+1
|
* Adds autoconf test for -Wno-pointer-sign compliler option.Ondrej Zajicek2010-03-241-0/+13
|
* Replaces local endianity testing macro with the common one.Ondrej Zajicek2009-10-271-0/+1
| | | | | That makes it easier to integrate BIRD to crosscompiling buildsystems.
* Better checks for M4 in configure.Ondrej Zajicek2009-05-221-0/+13
|
* Get Linux version from <linux/version.h>, not `uname -r`.Martin Mares2000-05-201-0/+17
|
* Cosmetic message fix.Martin Mares1999-04-121-1/+1
|
* Use `struct ip_mreqn' instead of `struct ip_mreq' for multicastMartin Mares1999-04-121-0/+12
| | | | | | | | | operations on 2.1/2.2 kernels. This allows passing of real interface indexes instead of referencing interfaces by their IP addresses which fails badly in presence of unnumbered interfaces. Unfortunately, this structure is not visible with glibc 2.0 as it provides its own networking headers :-( Both libc5 and glibc 2.1 should be OK.
* First step of "autoconfization". Created a configure script whichMartin Mares1999-01-091-0/+118
guesses most system-dependent parameters and determines name of system configuration file (sysdep/cf/...) with the remaining ones. To compile BIRD, you now need to do: autoconf # Create configure from configure.in ./configure # Run configure script make # Compile everything Configuration files: sysdep/config.h Master config file sysdep/autoconf.h Parameters determined by configure script sysdep/cf/*.h Fixed system configuration we're unable to guess. Makefiles are still the original ones, but this will change soon.