From 05d00803e9ffa329f82bf6539b3ee4e45d18ad98 Mon Sep 17 00:00:00 2001 From: Lilis Iskandar Date: Thu, 30 May 2024 11:13:14 +0800 Subject: [PATCH] gfx: Fix pkg-config name which should be SDL2_gfx instead of sdl2_gfx Signed-off-by: Lilis Iskandar --- gfx/sdl_gfx_cgo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/sdl_gfx_cgo.go b/gfx/sdl_gfx_cgo.go index c4688080..1e0f9f37 100644 --- a/gfx/sdl_gfx_cgo.go +++ b/gfx/sdl_gfx_cgo.go @@ -3,6 +3,6 @@ package gfx //#cgo windows LDFLAGS: -lSDL2 -lSDL2_gfx -//#cgo linux freebsd darwin pkg-config: sdl2_gfx +//#cgo linux freebsd darwin pkg-config: SDL2_gfx //#cgo linux freebsd darwin LDFLAGS: -lSDL2_gfx import "C"