Installing PHP from ports

I had install php 7.3 from ports. But when I installed extensions I forgot choose some necessary options and now when I try reinstal that there is no dialoge window like on first installation.
I mean this window
Untitled.png

And now I don't now how to choose some of this options. When I use "make deinstall" and after that "make install" nothing like this appears.
 
Note that lang/php73-extensions is a so-called "meta-port". It does not install anything by itself, it merely depends on other php73-* packages/ports. Just build the module you want/need on its own, there's no need for the php*-extensions, it's just there for convenience.
 
to roll back your choices and be presented with the config dialogue again
Code:
make rmconfig-recursive
make config-recursive install clean
 
Back
Top