diff options
author | 2018-08-31 07:28:16 +0800 | |
---|---|---|
committer | 2018-08-31 07:28:16 +0800 | |
commit | 8f5b08e5a94376b0d02238b1cd3bad035050b315 (patch) | |
tree | 6e66679e1f714dbf2a13117c71940280c83b5943 /profiles/features | |
parent | Drop arm-linux keyword from tree. (diff) | |
download | gentoo-8f5b08e5a94376b0d02238b1cd3bad035050b315.tar.gz gentoo-8f5b08e5a94376b0d02238b1cd3bad035050b315.tar.bz2 gentoo-8f5b08e5a94376b0d02238b1cd3bad035050b315.zip |
p/f/p/s/kernel-2.6.16+: remove definitions of lutimes.
Diffstat (limited to 'profiles/features')
-rw-r--r-- | profiles/features/prefix/standalone/kernel-2.6.16+/make.defaults | 7 | ||||
-rw-r--r-- | profiles/features/prefix/standalone/kernel-2.6.16+/profile.bashrc | 3 |
2 files changed, 9 insertions, 1 deletions
diff --git a/profiles/features/prefix/standalone/kernel-2.6.16+/make.defaults b/profiles/features/prefix/standalone/kernel-2.6.16+/make.defaults index c64a419f389d..e8e0ce1eaeac 100644 --- a/profiles/features/prefix/standalone/kernel-2.6.16+/make.defaults +++ b/profiles/features/prefix/standalone/kernel-2.6.16+/make.defaults @@ -9,9 +9,14 @@ # utimensat is missing or not reliable until linux-2.6.32. # needed by python-3. +# lutimes requires utimensat ac_cv_func_utimensat=no -# pipe2 requires >=linux-2.6.27. Needed by python-3. +ac_cv_func_lutimes=no +# pipe2 and dup3 requires >=linux-2.6.27. Needed by python-3. ac_cv_func_pipe2=no +ac_cv_func_dup3=no +# epoll_create1 requires >=linux-2.6.27. +ac_cv_func_epoll_create1=no # >=python-3 is masked. PYTHON_TARGETS=python2_7 diff --git a/profiles/features/prefix/standalone/kernel-2.6.16+/profile.bashrc b/profiles/features/prefix/standalone/kernel-2.6.16+/profile.bashrc index 0fc68db876ab..c08217181df4 100644 --- a/profiles/features/prefix/standalone/kernel-2.6.16+/profile.bashrc +++ b/profiles/features/prefix/standalone/kernel-2.6.16+/profile.bashrc @@ -18,6 +18,9 @@ elif [[ ${CATEGORY}/${PN} == sys-libs/glibc && ${EBUILD_PHASE} == compile ]]; th sed -e '/^extern int pipe2/d' -i "${S}"/posix/unistd.h || die einfo "Removing epoll_create1 definitions..." sed -e '/^extern int epoll_create1/d' -i "${S}"/sysdeps/unix/sysv/linux/sys/epoll.h || die + einfo "Removing lutimes and utimensat definitions..." + sed -e '/^extern int lutimes/,/__THROW/d' -i "${S}"/time/sys/time.h || die + sed -e '/^extern int utimensat/,/__THROW/d' -i "${S}"/io/sys/stat.h || die fi # Local Variables: |