# 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
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: