Guest User

Untitled

a guest
May 27th, 2018
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. // Options passed to all configures
  2. // --prefix is already set, and based on the php version
  3. $config_options_all = array(
  4. //'--disable-all',
  5. '--disable-cgi',
  6. '--enable-cli',
  7. );
  8.  
  9. // Options passed to version (branch) specific configures
  10. // Example: array('5.3' => '--enable-intl', '5.2' => '');
  11. $config_options_versions = array(
  12. '5.2' => '',
  13. '5.3' => '',
  14. );
Add Comment
Please, Sign In to add comment