From: Derrick Brashear Date: Wed, 27 Feb 2008 22:26:31 +0000 (+0000) Subject: arm-lwp-adm-20080227 X-Git-Tag: BP-openafs-windows-kdfs-ifs~69 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=023d3f3bae273d7af16d52fd0c468fc05653abe5;p=packages%2Fo%2Fopenafs.git arm-lwp-adm-20080227 LICENSE IPL10 don't use ucontext lwp on arm linux --- diff --git a/src/config/param.linux26.h b/src/config/param.linux26.h index 524509027..eeff2bbf5 100644 --- a/src/config/param.linux26.h +++ b/src/config/param.linux26.h @@ -91,11 +91,13 @@ #endif /* !defined(UKERNEL) */ +#ifndef AFS_ARM_LINUX24_ENV #ifdef __GLIBC__ #if (__GLIBC__ > 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 3) #define USE_UCONTEXT #endif #endif +#endif #include diff --git a/src/lwp/Makefile.in b/src/lwp/Makefile.in index 64bdb0348..104dad40b 100644 --- a/src/lwp/Makefile.in +++ b/src/lwp/Makefile.in @@ -53,7 +53,7 @@ process.s: # Making process.o for $(SYS_NAME) process.o : process.s process.i386.s process.c @set -x; case "$(SYS_NAME)" in \ - 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 ;; \