Merge branch 'master' of https://github.com/vapier/swig
Use $PKGCONFIG instead of hard-coded pkg-config for JS test. See https://github.com/swig/swig/pull/1796
This commit is contained in:
commit
034a6d54ee
2 changed files with 4 additions and 1 deletions
|
|
@ -7,6 +7,9 @@ the issue number to the end of the URL: https://github.com/swig/swig/issues/
|
|||
Version 4.0.2 (in progress)
|
||||
===========================
|
||||
|
||||
2020-05-24: vapier
|
||||
[JS] #1796 Fix pkg-config invocation in configure.
|
||||
|
||||
2020-02-18: ryannevell
|
||||
[Lua] #1728 Add support for LUA lightuserdata to SWIG_Lua_ConvertPtr.
|
||||
|
||||
|
|
|
|||
|
|
@ -1597,7 +1597,7 @@ else
|
|||
|
||||
if test -z "$JSCORELIB" -a -n "$PKGCONFIG"; then
|
||||
AC_MSG_CHECKING(for JavaScriptCore/Webkit library)
|
||||
if pkg-config javascriptcoregtk-1.0; then
|
||||
if $PKGCONFIG javascriptcoregtk-1.0; then
|
||||
JSCORELIB=`$PKGCONFIG --libs javascriptcoregtk-1.0`
|
||||
JSCOREVERSION=`$PKGCONFIG --modversion javascriptcoregtk-1.0`
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue