diff options
Diffstat (limited to 'package/uhttpd/src/uhttpd-utils.h')
-rw-r--r-- | package/uhttpd/src/uhttpd-utils.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/package/uhttpd/src/uhttpd-utils.h b/package/uhttpd/src/uhttpd-utils.h index 3514ce1cac..6a0a395a91 100644 --- a/package/uhttpd/src/uhttpd-utils.h +++ b/package/uhttpd/src/uhttpd-utils.h @@ -21,9 +21,12 @@ #include <stdarg.h> #include <fcntl.h> #include <pwd.h> -#include <shadow.h> #include <sys/stat.h> +#ifdef HAVE_SHADOW +#include <shadow.h> +#endif + #define min(x, y) (((x) < (y)) ? (x) : (y)) #define max(x, y) (((x) > (y)) ? (x) : (y)) |