diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-12-22 19:11:07 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-12-22 19:11:07 +0000 |
commit | e320e67feb2d6119491416f7a9740b400f8ed66e (patch) | |
tree | 2e4cac8408d8b28a9e5e86fc6fe6a004f28bff34 | |
parent | 5941632e79effa6654512aa391a6d569cde68b94 (diff) |
Patch from Peter S. Mazinger:
rename UCLIBC_PIE_SUPPORT to UCLIBC_BUILD_PIE
-rw-r--r-- | Rules.mak | 2 | ||||
-rw-r--r-- | debian/config | 2 | ||||
-rw-r--r-- | extra/Configs/Config.frv.default | 2 | ||||
-rw-r--r-- | extra/Configs/Config.in | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -226,7 +226,7 @@ ifeq ($(strip $(TARGET_ARCH)),arm) endif endif -ifneq ($(UCLIBC_PIE_SUPPORT),y) +ifneq ($(UCLIBC_BUILD_PIE),y) PIEFLAG= LDPIEFLAG= endif diff --git a/debian/config b/debian/config index 5bbd52996..bed3b700f 100644 --- a/debian/config +++ b/debian/config @@ -40,7 +40,7 @@ DOPIC=y HAVE_SHARED=y # ARCH_HAS_NO_LDSO is not set BUILD_UCLIBC_LDSO=y -# UCLIBC_PIE_SUPPORT is not set +# UCLIBC_BUILD_PIE is not set LDSO_LDD_SUPPORT=y UCLIBC_CTOR_DTOR=y # UCLIBC_PROPOLICE is not set diff --git a/extra/Configs/Config.frv.default b/extra/Configs/Config.frv.default index af6f1daed..ac1d0aa4e 100644 --- a/extra/Configs/Config.frv.default +++ b/extra/Configs/Config.frv.default @@ -48,7 +48,7 @@ HAVE_SHARED=y # ARCH_HAS_NO_LDSO is not set BUILD_UCLIBC_LDSO=y FORCE_SHAREABLE_TEXT_SEGMENTS=y -UCLIBC_PIE_SUPPORT=y +UCLIBC_BUILD_PIE=y LDSO_LDD_SUPPORT=y LDSO_CACHE_SUPPORT=y LDSO_PRELOAD_FILE_SUPPORT=y diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in index 65f9b32d3..5b8283dda 100644 --- a/extra/Configs/Config.in +++ b/extra/Configs/Config.in @@ -205,7 +205,7 @@ config FORCE_SHAREABLE_TEXT_SEGMENTS little bit smaller and guarantee that no memory will be wasted by badly coded shared libraries. -config UCLIBC_PIE_SUPPORT +config UCLIBC_BUILD_PIE bool "Build utilities as ET_DYN/PIE executables" depends on HAVE_SHARED depends on TARGET_i386 || TARGET_powerpc || TARGET_frv |