From b0393dec24d8b1a26e70397f93b055b988449bd0 Mon Sep 17 00:00:00 2001 From: Spencer Williams Date: Wed, 18 Mar 2026 21:57:54 -0400 Subject: Explicitly compile against Lua 5.4 --- Makefile | 4 ++-- mpc-bar.m | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 2c35264..d85d1a0 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ TARGET = mpc-bar -CFLAGS = -O2 -fobjc-arc -Wall -LDFLAGS = -lmpdclient -llua -framework Cocoa +CFLAGS = -I/usr/local/opt/lua@5.4/include -O2 -fobjc-arc -Wall +LDFLAGS = -L/usr/local/opt/lua@5.4/lib -lmpdclient -llua5.4 -framework Cocoa OUTPUT_OPTION=-MMD -MP -o $@ BINDIR = /usr/local/bin diff --git a/mpc-bar.m b/mpc-bar.m index 1a06a6d..d12f46c 100644 --- a/mpc-bar.m +++ b/mpc-bar.m @@ -30,7 +30,7 @@ #import -#define VERSION "0.5.0" +#define VERSION "0.5.1" #define TITLE_MAX_LENGTH 96 #define SLEEP_INTERVAL 0.2 -- cgit v1.2.3