Always provide the same date and time in 'Py_GetBuildInfo'. This is the information shown at the REPL and in 'sys.version'. We cannot pass it in CPPFLAGS due to whitespace in the DATE string. --- a/Modules/getbuildinfo.c +++ b/Modules/getbuildinfo.c @@ -4,6 +4,10 @@ #include #endif +/* Deterministic date and time. */ +#define DATE "Jan 1 1970" +#define TIME "00:00:01" + #ifndef DATE #ifdef __DATE__ #define DATE __DATE__ cgit logo'/> index : guix
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/services/cups.scm
AgeCommit message (Expand)Author
2017-04-16services: Add a default value to various service types....Ludovic Courtès
2017-03-12services: Move configuration functions that shouldn't be factorized....Clément Lassieur
2017-01-25services: Fix 'mkdir-p' in activation scripts....Clément Lassieur
2016-12-01services: cups: Follow symlinks when installing extensions....Andy Patterson
2016-11-26services: Factorize configuration abstraction....Julien Lepiller
2016-10-13gnu: Add CUPS service....Andy Wingo