summaryrefslogtreecommitdiff
path: root/src/locale-setup.c
AgeCommit message (Collapse)Author
2010-10-25ubuntu: Treat Ubuntu as a distinct distro in configure.ac etcAndrew Edmunds
Previously Ubuntu was treated as being equivalent to Debian, but the two distributions require different behaviour in certain places. This commit does not change the behaviour of systemd on either distro but it creates a framework for changes to be introduced by later commits. The following previously meant "Target is Debian or Ubuntu". * configure option "--with-distro=debian" * C preprocessor symbol "TARGET_DEBIAN" * Automake conditional "TARGET_DEBIAN" After this commit, all of the above are redefined to mean "Target is Debian" The following are introduced to mean "Target is Ubuntu". * configure option "--with-distro=ubuntu" * C preprocessor symbol "TARGET_UBUNTU" * Automake conditional "TARGET_UBUNTU" Most code written for Debian will also be applicable to Ubuntu. An extra Automake conditional "TARGET_DEBIAN_OR_UBUNTU" is introduced to avoid duplication of code that would otherwise occur. This commit updates configure.ac, Makefile.am and distro-specific source files in line with the above definitions.
2010-09-28use .conf for new config files: locale, vconsole, modules.dKay Sievers
2010-09-27Need to use #elif defined(DEBIAN) here...Michael Biebl
This fixes a c&p error in 7472744bf9eddc7137f03233e49fa780793d5fc0
2010-09-27debian: add locale compat supportMichael Biebl
Read LANG from /etc/default/locale.
2010-09-21suse: locale + vconsole compat supportKay Sievers
2010-09-21vconsole: make sure we don't merge configuration settings from different sourcesLennart Poettering
2010-09-21locale: make sure we don't merge configuration settings from different sourcesLennart Poettering
2010-09-21locale: unset locale vars that are not set any longerLennart Poettering
2010-09-21locale: never use LC_ALL. It's evil.Lennart Poettering
2010-09-21gentoo: locale-setup supportGustavo Sverzut Barbieri
Use locale variables from /etc/profile.env as Gentoo's openrc runscript does (tool that is used by /etc/init.d/* services).
2010-09-20locale: set LANG on ArchTom Gundersen
This variable is defined in /etc/rc.conf
2010-09-16locale: initialize locale from /etc/locale by defaultLennart Poettering