diff options
author | Roman Bogorodskiy <bogorodskiy@gmail.com> | 2011-09-15 19:37:51 -0700 |
---|---|---|
committer | Stef Walter <stefw@collabora.co.uk> | 2011-09-16 12:51:19 +0200 |
commit | 8054865325fdb2221f3e425d04d9e03f6475553e (patch) | |
tree | 66c0c83046d272341b5b403bddd222506d812a36 /p11-kit | |
parent | 67dc760cec1653e9571b7c4e2bada3992c2b8361 (diff) |
Add #include <limits.h> for PATH_MAX to fix compilation on FreeBSD.
https://bugs.freedesktop.org/show_bug.cgi?id=40923
Diffstat (limited to 'p11-kit')
-rw-r--r-- | p11-kit/modules.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/p11-kit/modules.c b/p11-kit/modules.c index 3f1eae1..4c87cee 100644 --- a/p11-kit/modules.c +++ b/p11-kit/modules.c @@ -50,11 +50,12 @@ #include <dirent.h> #include <dlfcn.h> #include <errno.h> +#include <limits.h> #include <pthread.h> #include <stdarg.h> #include <stddef.h> -#include <stdlib.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> #include <unistd.h> |