File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ description = {
14
14
license = " MIT"
15
15
}
16
16
dependencies = {
17
- " lua >= 5.1, < 5.4 "
17
+ " lua >= 5.1, < 5.5 "
18
18
}
19
19
build = {
20
20
type = " builtin" ,
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ if [%1]==[51] (
8
8
call :runtest 52
9
9
) else if [%1 ]== [53] (
10
10
call :runtest 53
11
+ ) else if [%1 ]== [54] (
12
+ call :runtest 54
11
13
) else (
12
14
call :runtest 51
13
15
)
Original file line number Diff line number Diff line change 1
1
#! /bin/bash -e
2
2
3
3
LUAV=$1
4
- if [ x" $1 " != x5.1 -a x" $1 " != x5.2 -a x" $1 " != x5.3 ]; then
4
+ if [ x" $1 " != x5.1 -a x" $1 " != x5.2 -a x" $1 " != x5.3 -a x " $1 " != x5.4 ]; then
5
5
LUAV=5.1
6
6
fi
7
7
8
- INC=/usr/include/lua$LUAV
8
+ if [ " $LUAV " == 5.4 ]; then
9
+ INC=/home/siffiejoe/.self/programs/lua$LUAV
10
+ else
11
+ INC=/usr/include/lua$LUAV
12
+ fi
9
13
10
14
gcc -Wall -Wextra -Os -fpic -I" $INC " -shared -o cmod.so cmod.c
11
15
gcc -Wall -Wextra -Os -fpic -I" $INC " -shared -o aiomod.so aiomod.c
You can’t perform that action at this time.
0 commit comments