Tools update and implicit function changes required with newest NDK

This commit is contained in:
shagrath 2024-01-08 23:13:15 +01:00
parent 4d2ea840a3
commit dc16f38e75
5 changed files with 20 additions and 5 deletions

View file

@ -13,7 +13,7 @@ android {
}
}
compileSdkVersion 33
ndkVersion "25.2.9519653"
ndkVersion "26.1.10909125"
defaultConfig {
applicationId "org.ab.x48"

View file

@ -70,7 +70,8 @@
#include <sys/time.h>
#include <fcntl.h>
#include "x48.h"
#include "binio.h"
#include "hp48_emu.h"
#include "hp48.h"
#include "debugger.h"

View file

@ -177,4 +177,18 @@ extern void XCopyPlane __ProtoType__((Display *dpy, Pixmap map, Window win, GC g
extern void XClearWindow __ProtoType__((Display *dpy, Window win));
static pthread_cond_t uiConditionVariable = PTHREAD_COND_INITIALIZER;
static pthread_mutex_t uiConditionMutex = PTHREAD_MUTEX_INITIALIZER;
static pthread_mutex_t uiConditionMutex = PTHREAD_MUTEX_INITIALIZER;
extern int
#ifdef __FunctionProto__
button_pressed(int b);
#else
button_pressed(b);
#endif
extern int
#ifdef __FunctionProto__
button_released(int b);
#else
button_released(b);
#endif

View file

@ -5,7 +5,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.0'
classpath 'com.android.tools.build:gradle:8.2.1'
}
}

View file

@ -1,6 +1,6 @@
#Wed Mar 22 21:49:54 CET 2023
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME