p/f/p/s/kernel-2.6.16+: remove definitions of lutimes.
authorBenda Xu <heroxbd@gentoo.org>
Thu, 30 Aug 2018 23:28:16 +0000 (07:28 +0800)
committerBenda Xu <heroxbd@gentoo.org>
Thu, 30 Aug 2018 23:28:16 +0000 (07:28 +0800)
profiles/features/prefix/standalone/kernel-2.6.16+/make.defaults
profiles/features/prefix/standalone/kernel-2.6.16+/profile.bashrc

index c64a419f389db6cf4ff8b58bd346277ea5f38590..e8e0ce1eaeacb478420081ea5b3b867798d769f4 100644 (file)
@@ -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
index 0fc68db876abe5a5ede61a3d517a352e2638632f..c08217181df4e3eb15f0be6a5885db29cd0ff08e 100644 (file)
@@ -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: