Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Gabriela Bittencourt
purr-data
Commits
f30246ce
Commit
f30246ce
authored
Jul 15, 2020
by
Albert Gräf
Browse files
pd-lua: Lua 5.4 compatibility.
parent
d50cddb6
Changes
1
Hide whitespace changes
Inline
Side-by-side
externals/Makefile
View file @
f30246ce
...
...
@@ -1426,8 +1426,8 @@ pddp_clean:
#------------------------------------------------------------------------------#
# PDLUA
LUA_CFLAGS
=
$(
shell
(
pkg-config
--cflags
lua5.3
||
pkg-config
--cflags
lua5.2
||
pkg-config
--cflags
lua
)
2> /dev/null
)
LUA_LIBS
=
$(
shell
(
pkg-config
--libs
lua5.3
||
pkg-config
--libs
lua5.2
||
pkg-config
--libs
lua
)
2> /dev/null
)
LUA_CFLAGS
=
$(
shell
(
pkg-config
--cflags
lua5.4
||
pkg-config
--cflags
lua5.3
||
pkg-config
--cflags
lua5.2
||
pkg-config
--cflags
lua
)
2> /dev/null
)
LUA_LIBS
=
$(
shell
(
pkg-config
--libs
lua5.4
||
pkg-config
--libs
lua5.3
||
pkg-config
--libs
lua5.2
||
pkg-config
--libs
lua
)
2> /dev/null
)
pdlua
:
make
-C
$(externals_src)
/pd-lua
LUA_CFLAGS
=
"
$(LUA_CFLAGS)
"
LUA_LIBS
=
"
$(LUA_LIBS)
"
PD_PATH
=
"
$(pd_src)
"
PD_LIB
=
"
$(pd_src)
/src"
CFLAGS
=
"
$(CFLAGS)
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment