nixpkgs/pkgs/os-specific/linux/pam_login/sys-stat-h.patch
Ludovic Courtès 76b699eb22 pam_login: Fix build on recent glibc.
svn path=/nixpkgs/trunk/; revision=21337
2010-04-27 09:43:26 +00:00

13 lines
389 B
Diff

Include the needed <sys/stat.h> since recent glibc is stricter about that.
--- pam_login-3.35/src/login.c~ 2007-05-04 14:07:49.000000000 +0200
+++ pam_login-3.35/src/login.c 2010-04-27 11:38:13.000000000 +0200
@@ -47,6 +47,7 @@
#include <signal.h>
#include <stdio.h>
#include <string.h>
+#include <sys/stat.h>
#include <sys/ioctl.h>
#include <sys/param.h>
#include <sys/resource.h>