From 4945d47829004bfabfeb15078659330f59df182d Mon Sep 17 00:00:00 2001 From: Diamante Date: Tue, 20 Aug 2024 19:03:16 +0200 Subject: [PATCH] build: fix clang (#106) --- .github/dependabot.yml | 2 +- deps/premake/libtomcrypt.lua | 1 + deps/premake/libtommath.lua | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f1cef93..86e542e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,5 +3,5 @@ updates: - package-ecosystem: gitsubmodule directory: "/" schedule: - interval: daily + interval: monthly open-pull-requests-limit: 10 \ No newline at end of file diff --git a/deps/premake/libtomcrypt.lua b/deps/premake/libtomcrypt.lua index 7ca3570..36316ee 100644 --- a/deps/premake/libtomcrypt.lua +++ b/deps/premake/libtomcrypt.lua @@ -27,6 +27,7 @@ end function libtomcrypt.project() project "libtomcrypt" language "C" + cdialect "C89" libtomcrypt.includes() libtommath.import() diff --git a/deps/premake/libtommath.lua b/deps/premake/libtommath.lua index ab4cdde..5ca7f44 100644 --- a/deps/premake/libtommath.lua +++ b/deps/premake/libtommath.lua @@ -25,6 +25,7 @@ end function libtommath.project() project "libtommath" language "C" + cdialect "C89" libtommath.includes()