From: Derrick Brashear Date: Wed, 27 Feb 2008 22:31:37 +0000 (+0000) Subject: STABLE14-arm-lwp-adm-20080227 X-Git-Tag: openafs-stable-1_4_7pre1~23 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=4b4e185cdd0f887c3b41e3ee810972ccafbfa448;p=packages%2Fo%2Fopenafs.git STABLE14-arm-lwp-adm-20080227 LICENSE IPL10 use ucontext-less lwp on arm linux (cherry picked from commit 023d3f3bae273d7af16d52fd0c468fc05653abe5) --- diff --git a/src/config/param.arm_linux26.h b/src/config/param.arm_linux26.h index 6fb0e07b4..9a8c8c1fb 100644 --- a/src/config/param.arm_linux26.h +++ b/src/config/param.arm_linux26.h @@ -84,11 +84,6 @@ #define SYS_NAME "arm_linux26" #define SYS_NAME_ID SYS_NAME_ID_arm_linux26 -#ifdef __GLIBC__ -#if (__GLIBC__ > 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 3) -#define USE_UCONTEXT -#endif -#endif #endif /* AFS_PARAM_H */ diff --git a/src/lwp/Makefile.in b/src/lwp/Makefile.in index d7306b284..87db1392f 100644 --- a/src/lwp/Makefile.in +++ b/src/lwp/Makefile.in @@ -36,7 +36,7 @@ process.o : process.s process.i386.s process.c @set -x; case "$(SYS_NAME)" in \ pmax_he1) \ $(CCOBJ) ${LWP_DBG} ${LWP_OPTMZ} -c -I${TOP_INCDIR} process.s;; \ - sun4c_51 | sun4c_52 | sun4m_51 | sun4m_52 | sun4c_53 | sun4m_53 | sun4_53 | sun4_52 | sun4_54 | sun4c_54 | sun4m_54 | sun4x_5* ) \ + sun4c_51 | sun4c_52 | sun4m_51 | sun4m_52 | sun4c_53 | sun4m_53 | sun4_53 | sun4_52 | sun4_54 | sun4c_54 | sun4m_54 | sun4x_5* | arm_linux* ) \ $(CPP) -P -I${TOP_INCDIR} ${srcdir}/process.s process.ss; \ ${AS} process.ss -o process.o; \ $(RM) process.ss ;; \