From 752102d0b631317c8d9c978221400a747580677e Mon Sep 17 00:00:00 2001 From: JJ Bliss Date: Thu, 7 May 2026 11:30:28 -0400 Subject: [PATCH] Remove sdl3-ttf dependency --- Makefile | 2 +- README.md | 1 - cmd/meadow/main.ha | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index dc98514..8efebe5 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ all: build clean: rm -rf build/* -LIBS != pkg-config --libs-only-l --libs-only-L sdl3 sdl3-image sdl3-ttf +LIBS != pkg-config --libs-only-l --libs-only-L sdl3 sdl3-image HARE_SOURCES != find . -name '*.ha' diff --git a/README.md b/README.md index df2c376..d8cbfc8 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,6 @@ Uxn/Varvara Emulator written in the hare programming language. - hare - sdl3 - sdl3-image -- sdl3-ttf - [hare-sdl3](https://git.sr.ht/~sircmpwn/hare-sdl3) To install hare-sdl3, the source must be copied into the HAREPATH third-party directory. diff --git a/cmd/meadow/main.ha b/cmd/meadow/main.ha index b5fced6..abaab1a 100644 --- a/cmd/meadow/main.ha +++ b/cmd/meadow/main.ha @@ -1,6 +1,5 @@ use sdl3; use sdl3::image; -use sdl3::ttf; use types::c; use os; use io;