From 415cb20dc15ac7e26f267a74a53892a2c176d62c Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Mon, 17 Sep 2018 18:26:50 +0200 Subject: [PATCH] Remove unused HAVE_BROKEN_GLIBC_FOPEN_APPEND This has not been used since PHP 5.0. --- acinclude.m4 | 52 ---------------------------------------------------- configure.ac | 1 - 2 files changed, 53 deletions(-) diff --git a/acinclude.m4 b/acinclude.m4 index 81fb607554..14dcb62b68 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1687,58 +1687,6 @@ AC_DEFUN([PHP_BROKEN_GETCWD],[ esac ]) -dnl -dnl PHP_BROKEN_GLIBC_FOPEN_APPEND -dnl -AC_DEFUN([PHP_BROKEN_GLIBC_FOPEN_APPEND], [ - AC_MSG_CHECKING([for broken libc stdio]) - AC_CACHE_VAL(_cv_have_broken_glibc_fopen_append,[ - AC_RUN_IFELSE([AC_LANG_SOURCE([[ -#include -int main(int argc, char *argv[]) -{ - FILE *fp; - long position; - char *filename = tmpnam(NULL); - - fp = fopen(filename, "w"); - if (fp == NULL) { - perror("fopen"); - exit(2); - } - fputs("foobar", fp); - fclose(fp); - - fp = fopen(filename, "a+"); - position = ftell(fp); - fclose(fp); - unlink(filename); - if (position == 0) - return 1; - return 0; -} -]])], -[_cv_have_broken_glibc_fopen_append=no], -[_cv_have_broken_glibc_fopen_append=yes], -[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ -#include -]], [[ -#if !__GLIBC_PREREQ(2,2) -choke me -#endif -]])], -[_cv_have_broken_glibc_fopen_append=yes], -[_cv_have_broken_glibc_fopen_append=no]) -])]) - - if test "$_cv_have_broken_glibc_fopen_append" = "yes"; then - AC_MSG_RESULT(yes) - AC_DEFINE(HAVE_BROKEN_GLIBC_FOPEN_APPEND,1, [Define if your glibc borks on fopen with mode a+]) - else - AC_MSG_RESULT(no) - fi -]) - dnl dnl PHP_BROKEN_GCC_STRLEN_OPT dnl diff --git a/configure.ac b/configure.ac index 50c9bec07c..a07ee1399b 100644 --- a/configure.ac +++ b/configure.ac @@ -495,7 +495,6 @@ immintrin.h PHP_FOPENCOOKIE PHP_BROKEN_GETCWD -PHP_BROKEN_GLIBC_FOPEN_APPEND if test "$GCC" = "yes"; then PHP_BROKEN_GCC_STRLEN_OPT fi -- 2.40.0