diff options
Diffstat (limited to 'libc')
-rw-r--r-- | libc/pwd_grp/Makefile.in | 2 | ||||
-rw-r--r-- | libc/pwd_grp/pwd_grp.c | 2 | ||||
-rw-r--r-- | libc/pwd_grp/pwd_grp_internal.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libc/pwd_grp/Makefile.in b/libc/pwd_grp/Makefile.in index c1bbbf1cf..f9c7149e7 100644 --- a/libc/pwd_grp/Makefile.in +++ b/libc/pwd_grp/Makefile.in @@ -11,7 +11,7 @@ PWDGRP_OUT := $(top_builddir)libc/pwd_grp CSRC := $(notdir $(wildcard $(PWDGRP_DIR)/*.c)) CSRC := $(filter-out pwd_grp.c pwd_grp_internal.c,$(CSRC)) -ifneq ($(HAS_SHADOW),y) +ifneq ($(UCLIBC_HAS_SHADOW),y) SHADOW_CSRC := \ fgetspent_r.c fgetspent.c getspent_r.c getspent.c \ getspnam_r.c getspnam.c lckpwdf.c putspent.c \ diff --git a/libc/pwd_grp/pwd_grp.c b/libc/pwd_grp/pwd_grp.c index 961899af9..2a9d4519a 100644 --- a/libc/pwd_grp/pwd_grp.c +++ b/libc/pwd_grp/pwd_grp.c @@ -31,7 +31,7 @@ #include <pwd.h> #include <grp.h> #include <paths.h> -#ifdef __HAS_SHADOW__ +#ifdef __UCLIBC_HAS_SHADOW__ #include <shadow.h> #endif #ifdef __UCLIBC_HAS_THREADS__ diff --git a/libc/pwd_grp/pwd_grp_internal.c b/libc/pwd_grp/pwd_grp_internal.c index cb0ae76cf..c89747890 100644 --- a/libc/pwd_grp/pwd_grp_internal.c +++ b/libc/pwd_grp/pwd_grp_internal.c @@ -31,7 +31,7 @@ #include <pwd.h> #include <grp.h> #include <paths.h> -#ifdef __HAS_SHADOW__ +#ifdef __UCLIBC_HAS_SHADOW__ #include <shadow.h> #endif #ifdef __UCLIBC_HAS_THREADS__ |