mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-23 19:03:59 +08:00
Fix configure test for sendfile()
* acinclude.m4 (GLIBCXX_CHECK_FILESYSTEM_DEPS): Fix test for sendfile. * configure: Regenerate. * config.h.in: Regenerate. From-SVN: r236730
This commit is contained in:
parent
5c42d34143
commit
c42d228806
@ -1,5 +1,9 @@
|
||||
2016-05-25 Jonathan Wakely <jwakely@redhat.com>
|
||||
|
||||
* acinclude.m4 (GLIBCXX_CHECK_FILESYSTEM_DEPS): Fix test for sendfile.
|
||||
* configure: Regenerate.
|
||||
* config.h.in: Regenerate.
|
||||
|
||||
* include/bits/c++config (_GLIBCXX14_USE_CONSTEXPR): Remove it.
|
||||
* include/bits/hashtable_policy.h (_Power2_rehash_policy::_M_next_bkt):
|
||||
Remove const qualification on function. Replace
|
||||
|
@ -4373,7 +4373,7 @@ dnl
|
||||
gnu* | linux* | solaris*)
|
||||
GCC_TRY_COMPILE_OR_LINK(
|
||||
[#include <sys/sendfile.h>],
|
||||
[sendfile(1, 2, (off_t*)NULL, sizeof 1);],
|
||||
[sendfile(1, 2, (off_t*)0, sizeof 1);],
|
||||
[glibcxx_cv_sendfile=yes],
|
||||
[glibcxx_cv_sendfile=no])
|
||||
;;
|
||||
@ -4383,7 +4383,7 @@ dnl
|
||||
esac
|
||||
])
|
||||
if test $glibcxx_cv_sendfile = yes; then
|
||||
AC_DEFINE(_GLIBCXX_USE_SENDFILE, 1, [Define if sendfile is available in <sys/stat.h>.])
|
||||
AC_DEFINE(_GLIBCXX_USE_SENDFILE, 1, [Define if sendfile is available in <sys/sendfile.h>.])
|
||||
fi
|
||||
AC_MSG_RESULT($glibcxx_cv_sendfile)
|
||||
dnl
|
||||
|
@ -937,7 +937,7 @@
|
||||
/* Define if _SC_NPROC_ONLN is available in <unistd.h>. */
|
||||
#undef _GLIBCXX_USE_SC_NPROC_ONLN
|
||||
|
||||
/* Define if sendfile is available in <sys/stat.h>. */
|
||||
/* Define if sendfile is available in <sys/sendfile.h>. */
|
||||
#undef _GLIBCXX_USE_SENDFILE
|
||||
|
||||
/* Define if struct stat has timespec members. */
|
||||
|
4
libstdc++-v3/configure
vendored
4
libstdc++-v3/configure
vendored
@ -80358,7 +80358,7 @@ else
|
||||
int
|
||||
main ()
|
||||
{
|
||||
sendfile(1, 2, (off_t*)NULL, sizeof 1);
|
||||
sendfile(1, 2, (off_t*)0, sizeof 1);
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
@ -80379,7 +80379,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
int
|
||||
main ()
|
||||
{
|
||||
sendfile(1, 2, (off_t*)NULL, sizeof 1);
|
||||
sendfile(1, 2, (off_t*)0, sizeof 1);
|
||||
;
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user