From c38dfe6188112ca490090966a63faefe5ec7e9a0 Mon Sep 17 00:00:00 2001 From: davidovski Date: Mon, 29 Aug 2022 13:01:02 +0000 Subject: added snes9x and php --- repo/openrgb/0001-fix-build.patch | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 repo/openrgb/0001-fix-build.patch (limited to 'repo/openrgb/0001-fix-build.patch') diff --git a/repo/openrgb/0001-fix-build.patch b/repo/openrgb/0001-fix-build.patch new file mode 100644 index 0000000..f9371d9 --- /dev/null +++ b/repo/openrgb/0001-fix-build.patch @@ -0,0 +1,29 @@ +diff --git a/i2c_smbus/i2c_smbus_linux.cpp b/i2c_smbus/i2c_smbus_linux.cpp +index 33d1494b..1c5ff27b 100644 +--- a/i2c_smbus/i2c_smbus_linux.cpp ++++ b/i2c_smbus/i2c_smbus_linux.cpp +@@ -14,6 +14,24 @@ + #include + #include + ++#ifndef HAVE_CANONICALIZE_FILE_NAME ++#include ++#include ++#include ++#include ++static char * canonicalize_file_name(const char *path) ++{ ++ char buf[PATH_MAX] = { }; ++ ++ snprintf(buf, sizeof(buf) - 1, "%s", path); ++ ++ if (!realpath(path, buf)) ++ return NULL; ++ ++ return strdup(buf); ++} ++#endif ++ + s32 i2c_smbus_linux::i2c_smbus_xfer(u8 addr, char read_write, u8 command, int size, union i2c_smbus_data* data) + { + -- cgit v1.2.1