Commit Graph

24 Commits

Author SHA1 Message Date
James Sansbury
fa268447c6 Remove messages about pear being removed in PHP 8+. 2020-11-24 08:35:02 -05:00
Tianon Gravi
3dc9a6988d Add "--with-pic" to configure flags (specifically to fix i386)
After looking/comparing at the output of `./configure` for our i386 and amd64 builds against that of Debian's i386 build, our i386 build was the only one of the three to include `checking whether to force non-PIC code in shared modules... yes` (the other two were `no`).

Debian includes `--with-pic`, and we do not.

Looking at the upstream PHP code for this configure check (313a56add0/configure.ac (L241-L256)), this makes total sense, and explains why i386 is the only architecture we see this issue on:

```m4
dnl Disable PIC mode by default where it is known to be safe to do so, to avoid
dnl the performance hit from the lost register.
AC_MSG_CHECKING([whether to force non-PIC code in shared modules])
case $host_alias in
  i?86-*-linux*|i?86-*-freebsd*)
    if test "${with_pic+set}" != "set" || test "$with_pic" = "no"; then
      with_pic=no
      AC_MSG_RESULT(yes)
    else
      AC_MSG_RESULT(no)
    fi
    ;;
  *)
    AC_MSG_RESULT(no)
    ;;
esac
```

This was probably already implied by our `CFLAGS` (and the compiler) on Alpine, but I figured it doesn't hurt to be explicit / consistent.
2020-11-04 17:22:43 -08:00
Joe Ferguson
e12d4c5d46 Drop md5 checksums 2020-10-29 13:51:51 -07:00
Docker Library Bot
5dd0da6ee3 Update 7.4 to 7.4.12 2020-10-29 18:46:34 +00:00
Joe Ferguson
a940d67380 Drop .so from "extension=" in docker-php-ext-enable generated ini files 2020-10-23 12:34:00 -07:00
Docker Library Bot
c257144e4b Update 7.4 to 7.4.11 2020-10-01 16:44:33 +00:00
Docker Library Bot
c8c4d223a0 Update 7.4 to 7.4.10 2020-09-03 14:45:47 +00:00
Tianon Gravi
165f8ca09c Add initial jq-based templating engine 2020-08-28 15:17:53 -07:00
Docker Library Bot
14a53e7cbf Update to 7.4.9 2020-08-06 12:46:14 +00:00
Docker Library Bot
86c8ec4d38 Update to 7.4.8 2020-07-09 17:52:38 +00:00
Docker Library Bot
b6fd2f7001 Update to 7.4.7 2020-06-11 16:10:51 +00:00
Joe Ferguson
a041c4250b Add ini-name to ext-install to pass along to ext-enable
Support an absolute path for --ini-name
2020-06-02 10:41:14 -07:00
Docker Library Bot
8c6d1f4218 Update to 7.4.6 2020-05-14 12:46:13 +00:00
Tianon Gravi
b3532e478a Update upstream download URLs
These are the URLs listed on https://www.php.net/downloads (and the URLs Homebrew is using), so they seem more appropriate/correct than these older URLs we've been using.
2020-05-05 13:28:02 -07:00
Tianon Gravi
1cc409c705 Apply typo fixes 2020-04-27 11:51:58 -07:00
Tianon Gravi
7ccfc9272c Remove "--hash-style=both"
It turns out that --hash-style=gnu is considered better than either of --hash-style=both or --hash-style=sysv, assuming your environment/platform supports it.

On amd64 with both Debian's and Alpine's linkers, --hash-style=gnu is the default.

This is especially relevant on MIPS (mips64le), where "ld: .gnu.hash is incompatible with the MIPS ABI" (so the linker sanely defaults to --hash-style=sysv there, as it should).
2020-04-16 20:49:46 -07:00
Docker Library Bot
c2cc2e726f Update to 7.4.5 2020-04-16 12:46:13 +00:00
Docker Library Bot
16766c6e5f Update to 7.4.4 2020-03-19 15:09:55 +00:00
Docker Library Bot
4b7da48c96 Update to 7.4.3 2020-02-20 12:18:24 +00:00
Docker Library Bot
703a3d0a4e Update to 7.4.2 2020-01-23 07:46:12 +00:00
Docker Library Bot
04c0ee7a02 Update to 7.4.1 2019-12-18 13:46:13 +00:00
Joe Ferguson
9bcb75e9db Prevent "silent" failures by having docker-php-ext-configure error on unknown flags so users have to fix them
"configure: WARNING: unrecognized options" just gets lost in all the configure output
2019-12-03 16:32:01 -08:00
Tianon Gravi
4aa1f0e493 Apply update.sh (www.php.net vs secure.php.net) 2019-11-28 07:41:13 -08:00
Nick
e186b9bb7a
update to php-7.4.0 2019-11-28 08:25:42 +01:00