diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-12-22 21:14:23 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-12-22 21:14:23 +0000 |
commit | 433ccbdd22063df62307459bb9d73b2e9016a5db (patch) | |
tree | 513f6f0dac212f39360ab7d0d03943fd9f7ddc8b /libc | |
parent | 3d831a7c27e8c781bf7cfef0e36a6f27f38c0cf4 (diff) |
Patch from Peter S. Mazinger:
rename UCLIBC_PROPOLICE to UCLIBC_HAS_SSP
Diffstat (limited to 'libc')
-rw-r--r-- | libc/misc/internals/__uClibc_main.c | 4 | ||||
-rw-r--r-- | libc/sysdeps/linux/common/Makefile | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libc/misc/internals/__uClibc_main.c b/libc/misc/internals/__uClibc_main.c index c41f7ccf2..33fc2ec68 100644 --- a/libc/misc/internals/__uClibc_main.c +++ b/libc/misc/internals/__uClibc_main.c @@ -24,7 +24,7 @@ #include <fcntl.h> #include <sys/stat.h> #include <sys/sysmacros.h> -#ifdef __UCLIBC_PROPOLICE__ +#ifdef __UCLIBC_HAS_SSP__ extern void __guard_setup(void); #endif @@ -225,7 +225,7 @@ __uClibc_start_main(int argc, char **argv, char **envp, } #endif -#ifdef __UCLIBC_PROPOLICE__ +#ifdef __UCLIBC_HAS_SSP__ __guard_setup (); #endif diff --git a/libc/sysdeps/linux/common/Makefile b/libc/sysdeps/linux/common/Makefile index 56a65797d..d1187cb7c 100644 --- a/libc/sysdeps/linux/common/Makefile +++ b/libc/sysdeps/linux/common/Makefile @@ -57,7 +57,7 @@ CSRC= __rt_sigtimedwait.c __socketcall.c __syscall_fcntl.c \ ifneq ($(strip $(EXCLUDE_BRK)),y) CSRC+=sbrk.c endif -ifeq ($(strip $(UCLIBC_PROPOLICE)),y) +ifeq ($(strip $(UCLIBC_HAS_SSP)),y) CSRC+=ssp.c endif |