summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2015-04-19Remove timesyncd check, along with NTP server and epoch checksAndy Wingo
2015-04-19Remove machined, importd, hostnamed, timedated checksAndy Wingo
2015-04-19logind will always be builtAndy Wingo
2015-04-19Remove rfkill checkAndy Wingo
2015-04-19Remove backlight checkAndy Wingo
2015-04-19Remove randomseed checkAndy Wingo
2015-04-19Remove firstboot checkAndy Wingo
2015-04-19Remove sysusers checkAndy Wingo
2015-04-19Remove tmpfiles checkAndy Wingo
2015-04-19Remove bootchart checkAndy Wingo
2015-04-19Remove vconsole checkAndy Wingo
2015-04-19Remove binfmt checkAndy Wingo
2015-04-19Remove libcurl checksAndy Wingo
2015-04-19Remove libidn checks/supportAndy Wingo
2015-04-19Remove gnutls checkAndy Wingo
2015-04-19Remove microhttps checks/supportAndy Wingo
2015-04-19Remove qrencode checksAndy Wingo
2015-04-19Remove libcryptsetup supportAndy Wingo
2015-04-19Remove elfutils checksAndy Wingo
2015-04-19Remove libaudit supportAndy Wingo
2015-04-19Remove gcrypt checksAndy Wingo
2015-04-19Remove debug-shell / secure-tty supportAndy Wingo
2015-04-19Remove compression supportAndy Wingo
2015-04-19Remove chkconfig supportAndy Wingo
2015-04-19Remove IMA supportAndy Wingo
2015-04-19Remove unifont and terminal checks/supportAndy Wingo
2015-04-19Remove xkbcommon checksAndy Wingo
2015-04-19Remove --with-compat-libs configure optionAndy Wingo
2015-04-19Remove librt checkAndy Wingo
2015-04-19Remove dlsym checkAndy Wingo
2015-04-19Remove "strings" checkAndy Wingo
2015-04-19Remove GObject introspection supportAndy Wingo
2015-04-19Remove sulogin supportAndy Wingo
2015-04-19Remove kmod supportAndy Wingo
2015-04-19Remove kill checksAndy Wingo
2015-04-19Remove quotaon/quotacheck checksAndy Wingo
2015-04-08Compiling.Andy Wingo
2015-04-08Remove libmount checkAndy Wingo
2015-04-08Remove HAVE_PYTHON bitsAndy Wingo
2015-04-08Remove libiptc thingsAndy Wingo
2015-04-08Remove SysV compatAndy Wingo
2015-04-08Remove utmp thingsAndy Wingo
2015-04-08Make autoreconf work againAndy Wingo
2015-04-08Change name to elogindAndy Wingo
* configure.ac: Change package name to elogind.
2015-03-09missing.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-04build-sys: fix check for efi-lds fileMirco 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-02build-sys: allow lto and FORTIFY_SOURCE with -O[sz]Zbigniew Jędrzejewski-Szmek
https://bugs.freedesktop.org/show_bug.cgi?id=89382
2015-02-24build-sys: fail if gnuefi files are not foundZbigniew 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-24build: add -Wno-format-signednessDavid 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-18Add gettext supportDidier Roche