Allow Docker-CE
This commit is contained in:
parent
7e8a74d1b2
commit
107fa29d8d
2
debian/client/native/DEBIAN/control
vendored
2
debian/client/native/DEBIAN/control
vendored
@ -4,5 +4,5 @@ Maintainer: TheBrokenRail <connor24nolan@live.com>
|
|||||||
Description: Fun with Blocks
|
Description: Fun with Blocks
|
||||||
Homepage: https://www.minecraft.net/en-us/edition/pi
|
Homepage: https://www.minecraft.net/en-us/edition/pi
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Depends: docker.io, docker-compose, zenity, policykit-1, passwd, login, qemu-user-static, binfmt-support
|
Depends: docker.io|docker-ce, docker-compose, zenity, policykit-1, passwd, login, qemu-user-static, binfmt-support
|
||||||
Conflicts: minecraft-pi-virgl
|
Conflicts: minecraft-pi-virgl
|
||||||
|
2
debian/client/virgl/DEBIAN/control
vendored
2
debian/client/virgl/DEBIAN/control
vendored
@ -4,5 +4,5 @@ Maintainer: TheBrokenRail <connor24nolan@live.com>
|
|||||||
Description: Fun with Blocks
|
Description: Fun with Blocks
|
||||||
Homepage: https://www.minecraft.net/en-us/edition/pi
|
Homepage: https://www.minecraft.net/en-us/edition/pi
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Depends: docker.io, docker-compose, virgl-server, zenity, policykit-1, passwd, login, qemu-user-static, binfmt-support
|
Depends: docker.io|docker-ce, docker-compose, virgl-server, zenity, policykit-1, passwd, login, qemu-user-static, binfmt-support
|
||||||
Conflicts: minecraft-pi-native
|
Conflicts: minecraft-pi-native
|
||||||
|
2
debian/server/DEBIAN/control
vendored
2
debian/server/DEBIAN/control
vendored
@ -4,4 +4,4 @@ Maintainer: TheBrokenRail <connor24nolan@live.com>
|
|||||||
Description: Fun with Blocks
|
Description: Fun with Blocks
|
||||||
Homepage: https://www.minecraft.net/en-us/edition/pi
|
Homepage: https://www.minecraft.net/en-us/edition/pi
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Depends: docker.io, docker-compose, qemu-user-static, binfmt-support
|
Depends: docker.io|docker-ce, docker-compose, qemu-user-static, binfmt-support
|
||||||
|
@ -27,6 +27,3 @@ target_link_libraries(compat core extra SDL GLESv1_CM GLESv2 X11 dl freeimage gl
|
|||||||
target_link_options(compat PRIVATE "-Wl,--no-as-needed")
|
target_link_options(compat PRIVATE "-Wl,--no-as-needed")
|
||||||
|
|
||||||
add_library(readdir SHARED src/readdir.c)
|
add_library(readdir SHARED src/readdir.c)
|
||||||
|
|
||||||
add_library(time SHARED src/time.c)
|
|
||||||
target_link_libraries(time rt)
|
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
#include <sys/time.h>
|
|
||||||
#include <time.h>
|
|
||||||
|
|
||||||
// Replace gettimeofday() With clock_gettime()
|
|
||||||
int gettimeofday(struct timeval *tv, __attribute__((unused)) void *tz) {
|
|
||||||
struct timespec tp;
|
|
||||||
int ret = clock_gettime(CLOCK_MONOTONIC_COARSE, &tp);
|
|
||||||
tv->tv_sec = tp.tv_sec;
|
|
||||||
tv->tv_usec = tp.tv_nsec * 0.001;
|
|
||||||
return ret;
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user