Skip to content

Commit 5754489

Browse files
committed
BUILD: use pkg-config to check freetype
1 parent ee20a65 commit 5754489

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
2020-03-07 (0.12.19)
22
COMMON: implement DEFINEKEY undo #92
3+
UI: added R157 colour theme #94
34

45
2020-02-13 (0.12.19)
56
AUDIO: fix integration with latest version of miniaudio library

configure.ac

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,13 @@ echo ${TARGET}
441441
echo "CFLAGS=${CFLAGS}"
442442
echo "CXXFLAGS=${CXXFLAGS}"
443443
echo "PACKAGE_LIBS=${PACKAGE_LIBS}"
444+
445+
if test x$ac_build_sdl = xyes; then
446+
echo
447+
echo "sdl2: `sdl2-config --version`"
448+
echo "freetype: `pkg-config --version freetype2`"
449+
fi
450+
444451
echo
445452

446453
if test x$ac_build_dist = xyes; then

src/platform/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:3.5.3'
8+
classpath 'com.android.tools.build:gradle:3.6.2'
99
classpath "com.github.ben-manes:gradle-versions-plugin:0.22.0"
1010
}
1111
}

0 commit comments

Comments
 (0)