mirror of
https://github.com/php-win-ext/php-lua.git
synced 2026-03-25 01:22:19 +01:00
15 lines
130 B
Bash
Executable File
15 lines
130 B
Bash
Executable File
phpize
|
|
|
|
./configure --with-lua-version=5.2
|
|
make
|
|
EX=$?;
|
|
if [ $EX != 0 ];
|
|
then
|
|
echo "compile failed";
|
|
exit $EX;
|
|
fi;
|
|
|
|
|
|
|
|
exit $EX;
|