Patch taken from the Sage packaging system. diff -Naur lcalc-1.23-vanilla/include/Ldirichlet_series.h lcalc-1.23-fixed-gcc.4.9/include/Ldirichlet_series.h --- lcalc-1.23-vanilla/include/Ldirichlet_series.h 2012-08-08 23:21:55.000000000 +0200 +++ lcalc-1.23-fixed-gcc.4.9/include/Ldirichlet_series.h 2014-04-21 14:37:59.027464849 +0200 @@ -43,7 +43,7 @@ //XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX template Complex L_function :: -dirichlet_series(Complex s, long long N=-1) +dirichlet_series(Complex s, long long N) { Complex z=0.; long long m,n; diff -Naur lcalc-1.23-vanilla/include/L.h lcalc-1.23-fixed-gcc.4.9/include/L.h --- lcalc-1.23-vanilla/include/L.h 2012-08-08 23:21:55.000000000 +0200 +++ lcalc-1.23-fixed-gcc.4.9/include/L.h 2014-04-21 14:32:04.003467348 +0200 @@ -491,7 +491,7 @@ //#include "Ldirichlet_series.h" //for computing Dirichlet series Complex partial_dirichlet_series(Complex s, long long N1, long long N2); - Complex dirichlet_series(Complex s, long long N); + Complex dirichlet_series(Complex s, long long N=-1LL); //#include "Ltaylor_series.h" //for computing taylor series for Dirichlet series //void compute_taylor_series(int N, int K, Complex s_0, Complex *series); 3eb6b'>treecommitdiff
AgeCommit message (Expand)Author
2022-01-01system: Allow 'chfn' to change the user's full name....Fixes <https://issues.guix.gnu.org/52539>. Reported by Jacob First <jacob.first@member.fsf.org>. * gnu/build/accounts.scm (allocate-passwd): Add comment as to why 'real-name' is taken from PREVIOUS. Add (not system?) to the condition. * gnu/system.scm (operating-system-etc-service) <login.defs>: Add "CHFN_RESTRICT". * gnu/system.scm (%setuid-programs): Add "chfn". * gnu/system/pam.scm (base-pam-services): Add "chfn". * doc/guix.texi (User Accounts): Document it. Ludovic Courtès