diff options
| -rw-r--r-- | .github/workflows/builds.yml | 2 | ||||
| -rw-r--r-- | src/core/boxes.c | 1 | ||||
| -rw-r--r-- | src/include/errors.h | 1 | ||||
| -rw-r--r-- | src/ui/ui.c | 1 |
4 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index efa074b7..b5d7f4e3 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -87,7 +87,7 @@ jobs: # INFO: M-C-C depends mate-desktop 1.27.1+, so we should install it from source. - name: Cache mate-desktop binary packages - uses: actions/cache@v5 + uses: actions/cache@v6 id: cache-mate-desktop with: path: ${{ env.CACHE_PATH }} diff --git a/src/core/boxes.c b/src/core/boxes.c index 9ef8d94d..6262453e 100644 --- a/src/core/boxes.c +++ b/src/core/boxes.c @@ -26,6 +26,7 @@ * 02110-1301, USA. */ +#include <config.h> #include "boxes.h" #include "util.h" #include <X11/Xutil.h> /* Just for the definition of the various gravities */ diff --git a/src/include/errors.h b/src/include/errors.h index 9282099c..50bc1f2a 100644 --- a/src/include/errors.h +++ b/src/include/errors.h @@ -26,6 +26,7 @@ #include <X11/Xlib.h> +#include <config.h> #include "util.h" #include "display.h" diff --git a/src/ui/ui.c b/src/ui/ui.c index 00500c03..7abfa45b 100644 --- a/src/ui/ui.c +++ b/src/ui/ui.c @@ -20,6 +20,7 @@ * 02110-1301, USA. */ +#include <config.h> #include "prefs.h" #include "ui.h" #include "frames.h" |
