Greetings,
When installing PHP through mise on Linux, the build is missing some extensions that are advertised as built in, namely :
I can "force" them using PHP_EXTRA_CONFIGURE_OPTIONS="--with-gmp --with-sodium" (I don't need the later two) but it's less than ideal.
Looking at the code, they seem to be enabled for macOS but not linux. It was handled on the original vfox plugin (you can see it here)
It could probably be handled on this side in the configure_linux function, but I'm not well versed in LUA or mise hooks in general. I believe for gmp and sodium the pkg-config names would be gmp and libsodium, respectively.
Thank you for your work nonetheless.
Greetings,
When installing PHP through mise on Linux, the build is missing some extensions that are advertised as built in, namely :
I can "force" them using
PHP_EXTRA_CONFIGURE_OPTIONS="--with-gmp --with-sodium"(I don't need the later two) but it's less than ideal.Looking at the code, they seem to be enabled for macOS but not linux. It was handled on the original vfox plugin (you can see it here)
It could probably be handled on this side in the configure_linux function, but I'm not well versed in LUA or mise hooks in general. I believe for gmp and sodium the pkg-config names would be gmp and libsodium, respectively.
Thank you for your work nonetheless.