Skip to content
Snippets Groups Projects
Commit 7b562f2f authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

define modules as hash with keys

parent 1237209c
No related branches found
No related tags found
No related merge requests found
......@@ -12,13 +12,18 @@ $php_version="8.4.4";
// extensions - see https://static-php.dev/en/guide/extensions.html
$aPhpLibs=[
"mysqli" => true,
"curl" => true,
"openssl" => true,
"sockets" => true,
// database support
"mysqli" => true,
"pdo" => true,
"pdo_mysql" => true,
"pdo_pgsql" => true,
"pdo_sqlite" => true,
"sockets" => true,
"pdo_sqlsrv" => false,
"whatever" => false,
];
......@@ -28,7 +33,6 @@ foreach($aPhpLibs as $key => $bEnabled){
$php_libs.=$bEnabled ? ($php_libs ? ",":"").$key : '';
}
}
// $php_libs="mysqli,openssl,pdo,pdo_mysql,pdo_pgsql,pdo_sqlite,sockets";
// TODO: how can it be dynamic?
$myarchitecture="x86_64";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment