diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-01-13 10:17:31 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-01-13 10:18:26 +0100 |
commit | b0ac713bef656102c722ab472753c17aa15fcf93 (patch) | |
tree | 30c5206a46bf039d08a454e79213574162aa3bfb /auth.c | |
parent | 92ae38e7170d435b3ae54374735e5a4896ece6b4 (diff) |
add check for shadow support, turn -Os back on
Diffstat (limited to 'auth.c')
-rw-r--r-- | auth.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -20,6 +20,9 @@ #define _GNU_SOURCE #define _XOPEN_SOURCE 700 #include <strings.h> +#ifdef HAVE_SHADOW +#include <shadow.h> +#endif #include "uhttpd.h" static LIST_HEAD(auth_realms); |