Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-04-19 | Remove timesyncd check, along with NTP server and epoch checks | Andy Wingo | |
2015-04-19 | Remove machined, importd, hostnamed, timedated checks | Andy Wingo | |
2015-04-19 | logind will always be built | Andy Wingo | |
2015-04-19 | Remove rfkill check | Andy Wingo | |
2015-04-19 | Remove backlight check | Andy Wingo | |
2015-04-19 | Remove randomseed check | Andy Wingo | |
2015-04-19 | Remove firstboot check | Andy Wingo | |
2015-04-19 | Remove sysusers check | Andy Wingo | |
2015-04-19 | Remove tmpfiles check | Andy Wingo | |
2015-04-19 | Remove bootchart check | Andy Wingo | |
2015-04-19 | Remove vconsole check | Andy Wingo | |
2015-04-19 | Remove binfmt check | Andy Wingo | |
2015-04-19 | Remove libcurl checks | Andy Wingo | |
2015-04-19 | Remove libidn checks/support | Andy Wingo | |
2015-04-19 | Remove gnutls check | Andy Wingo | |
2015-04-19 | Remove microhttps checks/support | Andy Wingo | |
2015-04-19 | Remove qrencode checks | Andy Wingo | |
2015-04-19 | Remove libcryptsetup support | Andy Wingo | |
2015-04-19 | Remove elfutils checks | Andy Wingo | |
2015-04-19 | Remove libaudit support | Andy Wingo | |
2015-04-19 | Remove gcrypt checks | Andy Wingo | |
2015-04-19 | Remove debug-shell / secure-tty support | Andy Wingo | |
2015-04-19 | Remove compression support | Andy Wingo | |
2015-04-19 | Remove chkconfig support | Andy Wingo | |
2015-04-19 | Remove IMA support | Andy Wingo | |
2015-04-19 | Remove unifont and terminal checks/support | Andy Wingo | |
2015-04-19 | Remove xkbcommon checks | Andy Wingo | |
2015-04-19 | Remove --with-compat-libs configure option | Andy Wingo | |
2015-04-19 | Remove librt check | Andy Wingo | |
2015-04-19 | Remove dlsym check | Andy Wingo | |
2015-04-19 | Remove "strings" check | Andy Wingo | |
2015-04-19 | Remove GObject introspection support | Andy Wingo | |
2015-04-19 | Remove sulogin support | Andy Wingo | |
2015-04-19 | Remove kmod support | Andy Wingo | |
2015-04-19 | Remove kill checks | Andy Wingo | |
2015-04-19 | Remove quotaon/quotacheck checks | Andy Wingo | |
2015-04-08 | Compiling. | Andy Wingo | |
2015-04-08 | Remove libmount check | Andy Wingo | |
2015-04-08 | Remove HAVE_PYTHON bits | Andy Wingo | |
2015-04-08 | Remove libiptc things | Andy Wingo | |
2015-04-08 | Remove SysV compat | Andy Wingo | |
2015-04-08 | Remove utmp things | Andy Wingo | |
2015-04-08 | Make autoreconf work again | Andy Wingo | |
2015-04-08 | Change name to elogind | Andy Wingo | |
* configure.ac: Change package name to elogind. | |||
2015-03-09 | missing.h: add NDA_* | Michael Olbrich | |
This is necessary to build with older kernel headers. NDA_VLAN was introduced in v3.9 and NDA_PORT, NDA_VNI and NDA_IFINDEX in v3.10 | |||
2015-03-04 | build-sys: fix check for efi-lds file | Mirco Tischler | |
Using the DIR macro breaks caching and has no benefit as it only offers performance improvements when AS_FOR is used with a single element list. Also --with-lds-dir= was broken as we never set have_efi_lds in this case. Fix this and check if PATH actually contains the efi-lds file. | |||
2015-03-02 | build-sys: allow lto and FORTIFY_SOURCE with -O[sz] | Zbigniew Jędrzejewski-Szmek | |
https://bugs.freedesktop.org/show_bug.cgi?id=89382 | |||
2015-02-24 | build-sys: fail if gnuefi files are not found | Zbigniew Jędrzejewski-Szmek | |
The build would fail later anyway, so it is better to bail out early. Also check for the second bios file only if the first one was not found. I'm not sure which one is preferred. If the other one, the order should be flipped. | |||
2015-02-24 | build: add -Wno-format-signedness | David Herrmann | |
gcc5 introduced this option (gcc4 silently ignores it, which is fine). Given that gcc5 thinks 'unsigned char'/'unsigned short' is promoted to 'int' for var-args, stuff like this spits out warnings: uint8_t x; printf("%" PRIu8", x); gcc5 promots 'x' to 'int', instead of 'unsigned int' and thus gets a signedness-warnings as it expects an 'unsigned int'. glibc states otherwise: unsigneds are always promoted to 'unsigned int'. Until gcc and glibc figure this out, lets just ignore that warning (which is totally useless in its current form). | |||
2015-02-18 | Add gettext support | Didier Roche | |